<!--var lastMenu;var lastSubMenu;var imgObj;var timerID;var LastHighlight;window.onresize= hideMenu;function startTimer(){	if (timerID==null){		timerID = window.setTimeout('hideMenu()',1000);	}}function stopTimer(){	if (timerID!=null){		window.clearTimeout(timerID);		timerID = null;	}}function showMenu(imgNum){	//find image object	imgObj = document.images["button"+imgNum];	xPos = getRealLeft(imgObj);	yPos = getRealTop(imgObj);	hideMenu();	if (imgNum != null){		var menu = "dhtml"+imgNum		yPos = yPos + (parseInt(imgObj.height));		if (imgNum <= 3){			//xPos = xPos + (40);		}else{			//xPos = xPos - (160);		}		if (is_ie){			eval(menu).style.left = xPos;			eval(menu).style.top = yPos;			eval(menu).style.visibility = 'visible';		}else{			document.getElementById(menu).style.left = xPos;			document.getElementById(menu).style.top = yPos;			document.getElementById(menu).style.visibility = 'visible';		}		lastMenu = imgNum;	}}function showSubMenu(imgNum){	if (imgNum != null){		imgObj = document.images["button"+imgNum];		xPos = getRealLeft(imgObj);		yPos = getRealTop(imgObj);	}	hideSubMenu();	if (imgNum != null){		var menu = "dhtml"+imgNum		yPos = yPos + (parseInt(imgObj.height));		if (is_ie){			eval(menu).style.left = xPos;			eval(menu).style.top = yPos;			eval(menu).style.visibility = 'visible';		}else{			document.getElementById(menu).style.left = xPos;			document.getElementById(menu).style.top = yPos;			document.getElementById(menu).style.visibility = 'visible';		}		lastSubMenu = imgNum;	}}function hideMenu(){	if (lastMenu != null){		var menu = "dhtml"+lastMenu;		if (is_ie){			eval(menu).style.visibility = 'hidden';		}else{			document.getElementById(menu).style.visibility = 'hidden';		}	}	hideSubMenu();}function hideSubMenu(){	if (lastSubMenu != null){		var menu = "dhtml"+lastSubMenu;		if (is_ie){			eval(menu).style.visibility = 'hidden';		}else{			document.getElementById(menu).style.visibility = 'hidden';		}	}}// LINK ROLLOVERSfunction rollover(menuID, bkgColor, textColor){	stopTimer();	if (is_ie){		eval(menuID).style.background = bkgColor;		eval(menuID).style.color = textColor;	}else{		document.getElementById(menuID).style.background = bkgColor;		document.getElementById(menuID).style.color = textColor;				// NETSCAPE FIX		if(LastHighlight != null && LastHighlight != menuID){			document.getElementById(LastHighlight).style.background = "transparent";			document.getElementById(LastHighlight).style.color = "#FFFFFF";		}		LastHighlight = menuID;	}}function rollout(menuID){	if (is_ie){		eval(menuID).style.background = "transparent";		eval(menuID).style.color = "#FFFFFF";	}else{		document.getElementById(menuID).style.background = "transparent";		document.getElementById(menuID).style.color = "#FFFFFF";	}	startTimer();}-->