function Screenshot(mypage, myname) {
	var w = 600;
	var h = 730;
	var url = "screenshots.php?"+mypage;
	var winl = (screen.width - w) / 2;

	winprops = 'height='+h+',width='+w+',top=50,left='+winl+',scrollbars=yes,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,status=1,toolbar=0,'
	win = window.open(url, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}