<!--
	if(!document.getElementById){
		if(document.all)
		document.getElementById=function(){
			if(typeof document.all[arguments[0]]!="undefined")
			return document.all[arguments[0]]
			else
			return null
		}
		else if(document.layers)
		document.getElementById=function(){
			if(typeof document[arguments[0]]!="undefined")
			return document[arguments[0]]
			else
			return null
		}
	}

	function winL() {
		if (parseInt(navigator.appVersion)>3) {
		 if (navigator.appName=="Netscape") {
			winW = window.innerWidth-16;
		 }
		 if (navigator.appName.indexOf("Microsoft")!=-1) {
			winW = document.body.offsetWidth-20;
		 }
		}
		return ((winW-765)>0?((winW-765)/2):0);
	}
	
	function move (id, x) {
	  obj = document.getElementById(id);
	  obj.style.left = parseInt(x);
	}
	
	function keepcentered() {
		move('page', winL());
	}

	window.onresize=keepcentered;

// -->