// JavaScript Document

//-----------------------------------------------
// Hides EMAIL LIST REGISTRATION FIELDS
//-----------------------------------------------

	function replace_register(){
		document.getElementById("lbl_register").style.display = "none";
	}
	
//-----------------------------------------------
// Hides SEARCH Label FIELDS
//-----------------------------------------------

	function replace_search(){
		document.getElementById("lbl_search").style.display = "none";
	}
	
//-----------------------------------------------
// Preloads nav elements
//-----------------------------------------------
	
	function MM_preloadImages() { //v3.0
	  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
		if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
	}
	
//-----------------------------------------------
// Popup for Infomeds
//-----------------------------------------------
	
	function infomed_launch(URL) {
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600');");
	}

