function openClose(id) {
  extendedID = "extended" + id;
  imageID = "image" + id;
  if(document.getElementById(extendedID).style.display == "block") {
     document.getElementById(imageID).src = "/images/open.gif";
     document.getElementById(extendedID).style.display = "none";
  }else{
     document.getElementById(imageID).src = "/images/close.gif";
     document.getElementById(extendedID).style.display = "block";
  }
}
function openWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}

function MM_openBrWindow(theURL,winName,features) { //v2.0

  window.open(theURL,winName,features);

}

