	var win;	//window to open
    function Open_LOGO()
	{
		WinWidth = 560;
		WinHeight = 135;

		if ((!win)||(!win.closed)) OpenNew = true;

		if (OpenNew)
		{
			win = window.open('logo.htm','MyLogo',"width="+WinWidth+",height="+ WinHeight +",top="+(screen.height-WinHeight)/2+",left="+(screen.width - WinWidth)/3+",scrollbars=no,resizable=no,menubar=on,toolbar=no,status=no,location=no,directories=no");
			win.focus();		
		};
	}
