//***************************************************************************************
//***************************************************************************************
function status(e)
{
	if (event.button == 2)
	{
		alert('This is a NO RIGHT CLICKING ZONE!');
	}
}
//***************************************************************************************
//***************************************************************************************
function MenuGuide(urlmenu,urlmain)
{
	parent.frames.header.location.replace(urlmenu) 
	parent.frames.main.location.replace(urlmain) 	
}
//***************************************************************************************
//***************************************************************************************
function PopWin(url)
{
	window.open(url,"","resizable=1,menubar=0,toolbar=1,status=1,scrollbars=1,width=800,height=600");
}
//***************************************************************************************
//***************************************************************************************
function GamePopWin(url)
{
	window.open(url,"","resizable=1,menubar=0,toolbar=0,,status=0,scrollbars=0,width=800,height=600");

}
//***************************************************************************************
//***************************************************************************************
function detect()
{
  //if((screen.width < 1024)&&(screen.height < 768))
  //{
   alert('Software Reflections is best viewed with a screen resolution of 1024 by 768. '
   +'Your current screen resolution is '+screen.width+' by '+screen.height+'.');
  //}
}
//***************************************************************************************
//***************************************************************************************
function waterEffect()
{
	document.all('InvText').filters.item(1).Phase = (document.all('InvText').filters.item(1).Phase + 15) % 100;
	window.setTimeout('waterEffect();', 100);
}
//***************************************************************************************
//***************************************************************************************
function shake(n) {
if (parent.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
         }
      }
   }
}
//***************************************************************************************
//***************************************************************************************
function BrowserCheck()
{
  	if (navigator.appName.indexOf("Explorer") != -1)
	{
		//alert("IE");
		window.location="OnlineEntertainment_IE.htm";
	}
	else  // Browser is not MSIE or is Netscape
	{   
  		//alert("This Online Feature Does Not Support Your Browser.");
		window.location="OnlineEntertainment_NIE.htm";
	}
}
//***************************************************************************************
//***************************************************************************************
function BrowserDetect(Flag,TheLink)
{
  	if (navigator.appName.indexOf("Explorer") != -1)
	{
		//alert("IE");
		if (Flag == 1)
		{
			GamePopWin(TheLink);
		}
		else if (Flag == 2)
		{
			PopWin(TheLink);
		}
		else then
		{
			window.location="TheLink";
		}
	}
	else  // Browser is not MSIE or is Netscape
	{   
  		//alert("This Online Feature Does Not Support Your Browser.");
		window.location="Deny.htm";
	}
}
//***************************************************************************************
//***************************************************************************************