<!--
//var evalTimer;

function showmenu(event) {
//	if(event == 0) {
//	<!--//pause = window.setTimeout(2000);//-->
//		if(document.layers) <!--//Checking the document.layers property to determine which object to use and thus to support both the main browsers//-->
//			document.layers["layer1"].visibility='hide';
//		else 
//			document.all["layer1"].style.visibility='hidden';
//	}
//	else if(event == 1) {
//		if(document.layers) 
//			document.layers["layer1"].visibility='show';
//		else 
//			document.all["layer1"].style.visibility='visible';
//	}
}

function layerTimeOut(length) {

//	evalTimer = setTimeout("showmenu(0)",length);

}

function stopTimeOut() {
//	if (evalTimer) {
//		clearTimeout(evalTimer);
//	}
}


function openWin(orient,destPage,name) {

	if(orient == "p") {
		var winWidth = 250;
		var winHeight = 390;
	}
	else if(orient == "l"){
		var winWidth = 360;
		var winHeight = 290;
	}
	
	var winX = screen.width;
	var winY = screen.height;
	var difX = (winX - winWidth) / 2;
	var difY = (winY - winHeight) / 2;

	var winProperties = 'location=no,menubar=no,toolbar=no,status=no,scrollbars=no,height=' + winHeight + ',width=' + winWidth + ',top='+ difY + ',left='+ difX + ',resizable=yes';

	var dispInfo = window.open(destPage,name,winProperties);
	dispInfo.focus();

}
-->