	<!--
		window.defaultStatus = "Welcome to the SportsBook System"
		
		var MinNavVersion = 4.08;//4.08
		var MinIEVersion = 4;//4
		
		function NewWindow(theSportsBook)//F R O M   I D E N T I F I C A T I ON
		{
			//Abre una nueva ventana con las propiedades incicadas, como: sin menu, si toolbars, del tamanno Total del screen, etc...
			var AppName = navigator.appName;
			var AppVersion = parseFloat(navigator.appVersion);
			var WindowOptions = "toolbar=no,menubar=no,status=no,location=no,left=0,top=0,scrollbars=yes";//,width=" + (screen.width - 10) + ",height=" + (screen.height - 70);
			var theURLToShow = "http://200.122.149.36/" + theSportsBook + "120/identification.htm";
			
			//Low Resolution
			if (screen.width < 800 && screen.height < 600)
			{
				if (AppName.indexOf("Netscape") != -1 && AppVersion < 5.0)
				{
					WindowOptions += ",width=" + (screen.width - 20) + ",height=" + (screen.height - 70) + ",resizable=no";
				}
				else
				{
					WindowOptions += ",width=" + (screen.width - 20) + ",height=" + (screen.height - 70) + ",resizable=yes";
				}
			}
			else//High Resolution
			{
				if (AppName.indexOf("Netscape") != -1 && AppVersion < 5.0)
				{
					WindowOptions += ",width=800,height=530,resizable=no";
				}
				else
				{
					WindowOptions += ",width=" + (screen.width - 20) + ",height=" + (screen.height - 70) + ",resizable=yes";
				}
			}
			
			//Revisa para cada tipo de Browser si la version corresponde a una donde es conocido que el software funciona correctamente
			if (AppName == "Netscape")
			{
				if (AppVersion >= MinNavVersion)
				{
					window.open(theURLToShow, theSportsBook,WindowOptions);
				}
				else
				{
					window.location = "http://216.194.163.98/" + theSportsBook + "120/WBrowserVersion.htm";
				}
			}
			else if (AppName.indexOf("Microsoft") != -1)
			{
				if (AppVersion >= MinIEVersion)
				{
					window.open(theURLToShow, theSportsBook, WindowOptions);
				}
				else
				{
					window.location = "http://216.194.163.98/" + theSportsBook + "120/WBrowserVersion.htm";
				}
			}
		}
		
		function ChangeStatus()
		{
			//Pone uin mensaje en la barra de status del Browser
			window.status = "Click Here to Enter to the System";
		}
	//-->
