// Open help popup
function openDetails(panelId) {
	openPopup("/helpPopup.aspx?panelId=" +panelId, "game", "1", 680,540);
}

// Generic Popup function
function openPopup(strURL, strWinID, strSB, intWidth, intHeight) {
	var strFeatures = "screenX=0,screenY=0,toolbar=0,location=0,directories=0,status=0,scrollbars=" + strSB + ",menubar=0,resizable=0,width=" + intWidth + ",height=" + intHeight;
	var oWin = window.open(strURL, strWinID, strFeatures);
	oWin.focus();
}

