// JavaScript Document

function openWin(URL) {
		scrW=screen.width;
		scrH=screen.height;
		W = 630;
		H = 650;
		openX = ((scrW/2) - (W/2));
		openY = ((scrH/2) - (H/2));
	if (navigator.appName == "Microsoft Internet Explorer") {
		if (navigator.platform.substr(0,3) == "Mac") {
			popWin = window.open(URL,"pop","directories=no,menubar=no,location=no,scrollbars=yes,status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
			popWin.focus();
		} else{
			popWin = window.open(URL,"pop","directories=no,menubar=no,location=no,scrollbars=yes,status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
			popWin.focus();
		}
	} else {
	popWin = window.open(URL,"pop","directories=no,menubar=no,location=no,scrollbars=yes,status=no,width=" + W+ ",height=" + H + ",screenX=" +  openX + ",screenY=" + openY );
	popWin.focus();
	}

}