function quickGo(form){
	var URL = document.form.site.options[document.form.site.selectedIndex].value;
	window.location.href = URL;
}

function screenshotOpen(url) {
	window.open(url, 'screenshot', 'width=640,height=480,directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no');
}

function Popup(mypage, myname, w, h) {
  var winL = Math.round((screen.width - w) / 2);
  var winT = Math.round((screen.height - h) / 2);
  var winprops = 'height='+h+',width='+w
  win = window.open(mypage, myname, winprops)
  win.moveTo(winL,winT)
}