<!--
function centerWindow(mypage, myname, w, h, options, blnWebsite) {

	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;
		}
		
	}
	
	if(!blnWebsite){
	
		var win = window.open(mypage, myname, winprops);

		win.focus();
		
	}
	else{
	
		winWebsite = window.open(mypage, myname, winprops);
		
		winWebsite.focus();
			
	}
	
}

//-->