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

}