function Refresh()
{
if (window.opener && !window.opener.closed) {
window.opener.document.location.reload();
}
window.close();
}

function DeleteThis(Prompt,DeleteCommand)
{
Prompt=Prompt.replace("_"," ");
Prompt=Prompt.replace("_"," ");
Prompt=Prompt.replace("_"," ");
if (window.confirm(Prompt)) {location.replace(DeleteCommand)}
}

function toggleMenu(huidigMenu) {
   if (document.getElementById){
	  thisMenu = eval('document.getElementById("'+ huidigMenu + '").style');
	  if (thisMenu.display == "block") {
	     thisMenu.display = "none"
	  } else {
	     thisMenu.display = "block"
	  }
      return false
   
   } else if (document.all) {
      thisMenu = eval("document.all." + huidigMenu + ".style")
	  if (thisMenu.display == "block") {
	     thisMenu.display = "none"
	  } else {
	     thisMenu.display = "block"
	  }
	  return false   
   
   } else {
      return true
   }
   
}

function cmsImageMouseOver(imageName, imageSrc)
   {
   document[imageName].src = imageSrc;
   }



