// ******************************************************************
// ******************************************************************
// ******************************************************************
// JavaScript Menu

<!--
function openWindow2(url) {
	width=600
	height=700
    x = (620 - width)/2, y = (597 - height)/2;

    if (screen) {
        y = (screen.availHeight - height)/2;
        x = (screen.availWidth - width)/2;
    }
	
	
	    window.open(url,'newWin','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+' scrollbars=no');
}
	
	function openWindow3(url) {
	width=500
	height=570
    x = (620 - width)/2, y = (597 - height)/2;

    if (screen) {
        y = (screen.availHeight - height)/2;
        x = (screen.availWidth - width)/2;
    }
	
    window.open(url,'newWin','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+' scrollbars=no');
}


//-->

