function findWH() {
winW = (is.ns)? window.innerWidth : document.body.offsetWidth
winH = (is.ns)? window.innerHeight : document.body.offsetHeight
}

function makeLiquid() {
if ((is.ns && (winW!=window.innerWidth || winH!=window.innerHeight)) || is.ie)
history.go(0)
}

function BrowserCheck() {
	var b = navigator.appName
	if (b.indexOf("Netscape")!=-1) 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)
	this.mac = (this.version.indexOf('Macintosh')>0)
}

is = new BrowserCheck()

findWH()

appleft=Math.round(winW/2 - 796/2)
apptop=Math.round(winH/2 - 434/2)

apptop=apptop<10?0:apptop;
appleft=appleft<10?0:appleft;

DIVtag='<style type="text/css"><!--#BigBen { position:absolute; visibility: visible; width:796px; height:434px; left: '+appleft+'; top: '+apptop+'; z-index:1; }--></style>';
document.write(DIVtag)