// eGameTimes.COM Common Java Function Script V4.0
//     Copyright (C) eGameTimes.COM 1997-2004
//************************************************

//-------------------------------------------------------------------
// Homepage Functions
//-------------------------------------------------------------------
//Set URL to default HomePage
var homeUrl="http://www.eGameTimes.com";

function DefaultHome()
{
	this.homepage.style.behavior = 'url(#default#homepage)';
	this.homepage.setHomePage( homeUrl );
}

//Add URL to Favorite
function AddToFav()
{
	window.external.AddFavorite( "http://www.eGameTimes.com", "eGameTimes eÓÎÊ±´ú" );
}

//-------------------------------------------------------------------
// Get date and week
//-------------------------------------------------------------------

function initArray()
{
	this.length=initArray.arguments.length;
	for( var i=0; i<this.length; i++ )
		this[i+1] = initArray.arguments[i];
}

//-------------------------------------------------------------------
// Show a popup window
//-------------------------------------------------------------------
function ShowPopup( sUrl, nWidth, nHeight )
{
	var hWin;
	var nLeft = MaxInt(parseInt((screen.width - nWidth) / 2), 0);
	var nTop  = MaxInt(parseInt((screen.height - nHeight) / 2), 0);
	if ( navigator.appName.indexOf("Microsoft") >= 0 )
		var sPos = "left=" + nLeft + ",top=" + nTop;
	else
		var sPos = "screenX=" + nLeft + ",screenY=" + nTop;
	hWin = window.open(sUrl, "", "fullscreen=0, scrollbars=0, location=0, menubar=0, resizable=0, status=0, titlebar=0, toolbar=0, "+sPos+", width="+nWidth+", height="+nHeight);
	hWin.focus();
	return hWin;
}

//-------------------------------------------------------------------
// Resize a popup window
//-------------------------------------------------------------------

function ResizeWin( hWin, nX, nY, nWidth, nHeight )
{
	hWin.moveTo( nX, nY );
	hWin.resizeTo( nWidth, nHeight );
}

//-------------------------------------------------------------------
// Resize a popup window and align to center 
//-------------------------------------------------------------------

function ResizeWinTo( hWin, nWidth, nHeight )
{
	var nLeft = MaxInt(parseInt((screen.width - nWidth) / 2), 0);
	var nTop  = MaxInt(parseInt((screen.height - nHeight) / 2), 0);
	hWin.moveTo( nLeft, nTop );
	hWin.resizeTo( nWidth, nHeight );
}

//-------------------------------------------------------------------
// Popup a custom window and align to center 
//-------------------------------------------------------------------

function AnimatedOpen( sUrl, sName, nWidth, nHeight )
{
	var nLeft = MaxInt(parseInt((screen.width - nWidth) / 2), 0);
	var nTop  = MaxInt(parseInt((screen.height - nHeight) / 2), 0);
	var nSpeed = 10;
	var hWin;
	if ( navigator.appName.indexOf("Microsoft") >= 0 )
		var sPos = "left=" + nLeft + ",top=" + nTop;
	else
		var sPos = "screenX=" + nLeft + ",screenY=" + nTop;
	if( window.resizeTo && navigator.userAgent.indexOf("Opera") == -1 )
	{
		hWin = window.open( "", sName, "scrollbars=1, resizable=0, status=0, "+sPos+", width=100, height=100" );
		for( size = 100; size < MaxInt(nWidth,nHeight); size += nSpeed )
		{
			curWidth = size<nWidth?size:nWidth;
			curHeight = size<nHeight?size:nHeight;
			hWin.resizeTo( curWidth, curHeight );
		}
		hWin.location = sUrl;
	}
	else
		hWin = window.open( "", sName, "scrollbars=1, resizable=0, status=0, "+sPos+", width="+nWidth+", height="+nHeight );
	hWin.focus();
	return hWin;
}

//-------------------------------------------------------------------
// Find the largest of two integers
//-------------------------------------------------------------------

function MaxInt( n1, n2 ) 
{
	if ( n1 >= n2 )
		return n1;
	else
		return n2;
}

//-------------------------------------------------------------------
// Get a random number
//-------------------------------------------------------------------

function Random( maxValue )
{
	day = new Date();
	hour = day.getHours();
	min = day.getMinutes();
	sec = day.getSeconds();
	return (((hour + 1) * (min + 1) * sec) % maxValue) + 1;
}

//-------------------------------------------------------------------
// Macromedia rollover
//-------------------------------------------------------------------

function MM_preloadImages()
{ //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
  var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
  if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore()
{ //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_swapImage()
{ //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
  if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_findObj(n, d)
{ //v3.0
 var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
  d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
 if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
 for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function MM_showHideLayers()
{ //v3.0
 var i,p,v,obj,args=MM_showHideLayers.arguments;
 for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
  if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v;}
  obj.visibility=v;}
}