function submit_emr() {
	document.getElementById('emr_act').innerHTML = '<p>Please wait... processing details...</p>';
	document.getElementById('emr_act').className = 'note';
	document.getElementById('transmit_data').disabled=true;
	//return false;
	}


 function EC_qf(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


(function(){ 
/*Use Object Detection to detect IE6*/ 
var m = document.uniqueID /*IE*/ 
&& document.compatMode /*>=IE6*/ 
&& !window.XMLHttpRequest /*<=IE6*/ 
&& document.execCommand ;


try{ 
       if(!!m){ 
          m("BackgroundImageCache", false, true) /* = IE6 only */ 
          } 
      }catch(oh){};
       })(); 



function n3_ToggleMe(theID,imgID,img1,img2,alt1,alt2) {
	if(!document.getElementById){return};
	var theElement = document.getElementById(theID);
	var theImage = document.getElementById(imgID);
	var theImageAlt

	if(theImage.src.indexOf(img1)!=-1){
		theImage.src=img2;
		theImageAlt=alt1
	}
	else{
		theImage.src=img1;
		theImageAlt=alt2;
	}
	theImage.setAttribute("alt",theImageAlt);
	
	if (theElement.style.display == 'block') {
		theElement.style.display = 'none';
	} else {
		theElement.style.display = 'block';
	}

}