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=0" 

windowW = W; 

windowH = H; 

windowX = windowX = Math.ceil( (window.screen.width  - windowW) / 2 )

windowY = windowY = Math.ceil( (window.screen.height - windowH) / 2 )

splashWin = window.open(theurl, wname, 'fullscreen=0,scrollbars=0,toolbar=0,location=0,directories=0,noresize,status=0,menubar=0'+s+r); 

splashWin.blur();
splashWin.resizeTo( Math.ceil( W ) , Math.ceil( H ) )

splashWin.moveTo( Math.ceil( windowX ) , Math.ceil( windowY ) )

splashWin.focus();}

