<!--

function popup(url,remoteW,remoteH){
	// These varibles get the exact pixel height and width for YOUR computer's resolution.
	var iMyWidth;
	var iMyHeight;
	//var remoteW = 400;
	//var remoteH = 600;
	//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) - ((remoteW/2) + 10); 
	
	//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) - ((remoteH/2) + 40);
	//var newH = remoteH + 20;
	
	var winopts = "status=0,toolbar=0,scrollbars=0,directories=0,location=0,menubar=0,scrollbars=0,width="+remoteW+",height="+remoteH+",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",channelmode=0,dependent=0,fullscreen=0,resizable=0";
	var newOne = window.open(url, "newOne",winopts);
	newOne.document.close();
	newOne.focus();
}

// -->