<!--function setBgDimension() {	var img = document.getElementById("background");	img.style.width  = "10px";	img.style.height = "10px";	img.style.width  = Math.max(document.body.clientWidth,  document.body.scrollWidth);	img.style.height = Math.max(document.body.clientHeight, document.body.scrollHeight);}function openRemote(theURL,winW,winH) {		// These varibles get the exact pixel height and width for YOUR computer's resolution.	var iMyWidth;	var iMyHeight;		//this formula takes half the total screen width and subtracts half the new window width (plus 5 pixel borders for your browser window).	iMyWidth = (window.screen.width/2) - ((winW/2) + 10);	newW = winW + 20		//this formula does the same thing but for the height, but also accomodates for the title bar and a small border on the bottom.	iMyHeight = (window.screen.height/2) - ((winH/2) + 60);	var newH = winH + 40;		var winopts = "status=0,toolbar=0,directories=0,location=0,menubar=0,width="+newW+",height="+newH+",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",channelmode=0,dependent=0,fullscreen=0,scrollbars=1,resizable=1";	var newOne = window.open(theURL, "newOne",winopts);		newOne.focus();}//-->