function replaceAll(strMain, strToRep, strRep) 
{
	while(strMain.indexOf(strToRep) >= 0)
		strMain = strMain.replace(strToRep, strRep);
	return strMain;
}

function showPopupWindow(strPageName, strPageTitle, intWindowHeight, intWindowWidth)
{
	var lintWindowTopPosition = eval(screen.height - intWindowHeight) / 2;
	var lintWindowLeftPosition = eval(screen.width - intWindowWidth) / 2;
	strPageTitle = replaceAll(strPageTitle,' ','');
	return  window.open(strPageName,strPageTitle,"top=" + lintWindowTopPosition + ",left=" + lintWindowLeftPosition + ",height=" + intWindowHeight + ",width=" + intWindowWidth + ",toolbar=none,scrollbars=1");
}

function OpenErrorPage(SID)
{
	showPopupWindow('ErrorMessage.aspx?SID='+ SID, 'Error Message', 250, 600);
}


function OpenDisclaimerPage()
{
	showPopupWindow('Disclaimer.aspx', 'Disclaimer Text', 300, 600);
}