<!--

// BrowserCheck Object
function BrowserCheck() {
	var b = navigator.appName
	if (b=="Netscape") this.b = "ns"
	else if (b=="Microsoft Internet Explorer") this.b = "ie"
	else this.b = b
	this.version = navigator.appVersion
	this.v = parseInt(this.version)
	this.ns = (this.b=="ns" && this.v>=4)
	this.ns4 = (this.b=="ns" && this.v==4)
	this.ns5 = (this.b=="ns" && this.v==5)
	this.ie = (this.b=="ie" && this.v>=4)
	this.ie4 = (this.version.indexOf('MSIE 4')>0)
	this.ie5 = (this.version.indexOf('MSIE 5')>0)
	this.min = (this.ns||this.ie)
}
is = new BrowserCheck()

var splashWin;

function openwinnowin(theurl, wname, W, H) {
	s = "width="+W+",height="+H;
	r = (is.ie) ? ",resizable=0" : ",resizable=1"

	windowW = W;
	windowH = H;
	windowX = (window.screen.width  - windowW) / 2;
	windowY = (window.screen.height - windowH) / 2;

	splashWin = window.open("#", wname, 'fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,'+s+r);

	//splashWin.blur();
	splashWin.resizeTo( Math.ceil( W )       , Math.ceil( H ) )
	splashWin.moveTo(   Math.ceil( windowX ) , Math.ceil( windowY ) )

	splashWin.document.open();
	splashWin.document.write("\n");
	splashWin.document.write("body { overflow: hidden; border-style: none; border-width: 0px; margin: 10;}\n");
	splashWin.document.write("#lineLDiv 		{ position: absolute; left:       0px;   top:         0px; width:     1px; height: "+H+"px; z-index: 2; background-color: #000000; layer-background-color:#000000; clip:rect(0,1,"+H+",0);}");
	splashWin.document.write("#lineRDiv		{ position: absolute; left: "+(W-1)+"px; top:         0px; width:     1px; height: "+H+"px; z-index: 2; background-color: #000000; layer-background-color:#000000; clip:rect(0,1,"+H+",0);}");
	splashWin.document.write("#lineBDiv 		{ position: absolute; left:       0px;   top: "+(H-1)+"px; width: "+W+"px; height:     1px; z-index: 2; background-color: #000000; layer-background-color:#000000; clip:rect(0,"+W+",1,0);}");
	splashWin.document.write("#lineTDiv 		{ position: absolute; left:       0px;   top:         0px; width: "+W+"px; height:     1px; z-index: 2; background-color: #000000; layer-background-color:#000000; clip:rect(0,"+W+",1,0);}");
	splashWin.document.write("#stillloadingDiv 	{ position: absolute; left:   0px; top: "+Math.ceil(H/2)+"px; width: "+W+"px; height: "+H+"px; z-index: 1; background-color: #C0C0C0; layer-background-color:#C0C0C0; clip:rect(0,"+W+",19,0);}");
	splashWin.document.write("</style>\n");
	splashWin.document.write("<body  onBlur=\"self.focus()\" onload=\"self.document.location.href='"+theurl+"'\">");
	splashWin.document.write("<div id='lineLDiv'></div>");
	splashWin.document.write("<div id='lineRDiv'></div>");
	splashWin.document.write("<div id='lineBDiv'></div>");
	splashWin.document.write("<div id='lineTDiv'></div>");
	
	splashWin.document.write("<body>");
	splashWin.document.close();

	splashWin.focus();
}
var stoptime;
		

	
	// -->	
