// JavaScript Document

<!--

// determine width of browser window in IE
	var winW = 630, winH = 460;

	if (parseInt(navigator.appVersion)>3) {
		if (navigator.appName=="Netscape") {
 			winW = window.innerWidth;
			winH = window.innerHeight;
			}
	if (navigator.appName.indexOf("Microsoft")!=-1) {
		winW = document.body.offsetWidth;
		winH = document.body.offsetHeight;
		}
}

// note: add a check to see if value is less than zero.  If so, default to zero

// calculate top, left position of content DIV
// and define as style sheet for #topmenu
var xzero=(winW-792)/2;
var yzero=(winH-612)/2;

document.all.header.style.left = 0;
document.all.header.style.top = 0;

//document.write("Window width = "+winW+"<br>"+"Window height = "+winH+"<br>"+"xzero = "+xzero+"<br>"+"yzero = "+yzero)

//-->
