<!--
function centerWindow(mypage, myname, w, h, options) {

	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops = "height="+h+",width="+w+",top="+wint+",left="+winl;
	
	if(options != null){
	
		if(options.length > 0){
			winprops += "," + options;
		}
		
	}
	
	var win = window.open(mypage, myname, winprops);

	win.focus();
	
}

function openReportWindow(){
		
	centerWindow("about:blank", "winReport", 800, 600, "scrollbars=yes,resizable=yes");
		
}


//-->