
	function GetCurCmd() {
		if(event==null)
			var cc = window.event.srcElement;
		else
			var cc = window.event.srcElement;
		while((cc.id=="") && (cc.tagName!="TD")) {
			cc = cc.parentElement;
			if(cc==null)
				break;
		}
		return cc;
	}

	function HoverSel(mode) {
		var mc = GetCurCmd();

		with(mc) {
			if(mode) {
				className = "menuItem";
			} else {
				className = "menuItemOver";
			}
		}
		cCmd = mc;
	}


	function HoverSelsmall(mode) {
		var mc = GetCurCmd();

		with(mc) {
			if(mode) {
				className = "menuItemsmall";
			} else {
				className = "menuItemOversmall";
			}
		}
		cCmd = mc;
	}
	
	
	// This function opens a popup window 
	function Popup(page, vars) {
	OpenWin = this.open(page, "Change", vars);
	}
	
	

<!--hide 
function newwindow() 
{ 
window.open('newpatientspecial.htm','jav','width=570,height=570,scrollbars=yes,resizable=yes'); 
} 
//--> 

<!--hide 
function newwindow2() 
{ 
window.open('faq_sedation.htm','jav','width=570,height=570,scrollbars=yes,resizable=yes'); 
} 
//--> 	
	
	
