// button rollover script
<!--
if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;

nav_images = new Array (
 "b1","b2","b3"
)
nav_images_path = "/dcm/elements/";
for(i in nav_images){
 eval(nav_images[i]+"_on = new Image()");
 eval(nav_images[i]+"_on.src = nav_images_path+nav_images[i]+'_on.gif'");
 eval(nav_images[i]+"_off = new Image()");
 eval(nav_images[i]+"_off.src = nav_images_path+nav_images[i]+'_off.gif'");
}

function swapEm2(imagename, stat){
 if(parseInt(navigator.appVersion) > 3){
  if(navigator.appName == "Netscape"){
   eval("window.document['" + imagename + "'].src = " + imagename + "_" + stat + ".src");
  }else{
   eval("window.document.all['" + imagename + "'].src = " + imagename + "_" + stat + ".src");
  }
 }
 
// pulldown menu script
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



// image popup script
self.name = "main";

function swapEm2(imagename, stat){
                if(parseInt(navigator.appVersion) < 4){}
                else{
                        if(navigator.appName == "Netscape"){
                               eval("window.document['" + imagename + "'].src = " + imagename + "_" + stat + ".src");
                }else{
                                eval("window.document.all['" + imagename + "'].src = " + imagename + "_" + stat + ".src");
                }
        }
}



function pop_image(image,width,height) {
        window.open(escape(image),"","width="+width+",height="+height+",menubar=0,scrollbars=1,toolbar=0");
        return false;
}

function pop_image2(image,width,height) {
        window.open(image,"","width="+width+",height="+height+",menubar=0,scrollbars=1,toolbar=0");
        return false;
}



function pop(url) {
	
var loc = window.location;
      window.open(url,'pop_resource','toolbar=0,menubar=0,location=0,scrollbars=1,height=500,width=600,resizable=1');
	return false;

}

function pop_window(url,width,height) {
                window.open(url,"info",'toolbar=no,menubar=no,resizable=yes,location=no,scrollbars=yes,height='+height+',width='+width);
                return false;
        }



function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 

//-->