<!--
function openWin(URL,W,H,C) {

if (C==1){
		scrW=screen.width;
		scrH=screen.height;
		openX = ((scrW/2) - (W/2));
		openY = ((scrH/2) - (H/2));
		winname ="pop";
		S = "scrollbars=yes";
} else {
	openX =0;
	openY=0;
	winname ="pop";
	S = "scrollbars=yes";
}
	if (navigator.appName == "Microsoft Internet Explorer") {
		if (navigator.platform.substr(0,3) == "Mac") {
			mainWin = window.open(URL,winname,"directories=no,menubar=no,location=no,toolbar=yes,resizable=yes,"+S+",status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
		} else{
			mainWin = window.open(URL,winname,"directories=no,menubar=no,location=no,toolbar=yes,resizable=yes,"+S+",status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
		}
	} else {
	mainWin = window.open(URL,winname,"directories=no,menubar=no,location=no,toolbar=yes,resizable=yes,"+S+",status=no,width=" + W+ ",height=" + H + ",screenX=" +  openX + ",screenY=" + openY );
	}

}
//-->
