<!--
//================================================
// New Window Open Script
//------------------------------------------------
// <a href="url" onclick="fOpenW('url','title','config');return false;">
//================================================
function fOpenW(url,title,config) {
	var newWin;
	var wWidth = 916;
	var wHeight = 600;
	var scrnWidthCenter = screen.availWidth / 2;
	var scrnHeightCenter = screen.availHeight / 2;
	if (!!window && url) {
		if (!config) config = "";
		if(config == "game") config = "width="+wWidth+",height="+ wHeight+",left=" + (scrnWidthCenter - (wWidth / 2)) + ",top=" + (scrnHeightCenter - (wHeight / 2) - 60)+",scrollbars=yes,location=no,menubar=no,directories=no,status=yes,resizable=no";
		newWin = window.open(url,title,config);
		newWin.focus();
	}
}
//-->