
function NewWindow(sUrl, sTitle, sWidth, sHeight, sScrollable) 
{
	var iLeft = (screen.width - sWidth) / 2;
	var iTop = (screen.height - sHeight) / 2;

	var oNewWindow = window.open(sUrl, sTitle, 'height='+sHeight+',width='+sWidth+',top='+iTop+',left='+iLeft+',scrollbars='+sScrollable+',resizable=yes');

	if (oNewWindow && oNewWindow.open && !oNewWindow.closed)
	{
		oNewWindow.window.focus();
	}
	return oNewWindow;
}

var oPoppedWindow = null;

function ClosePoppedWindows()
{
	if (oPoppedWindow && oPoppedWindow.open && !oPoppedWindow.closed)
	{
		oPoppedWindow.close();
	}
}

function popup_ForgotPassword()
{
	oPoppedWindow = NewWindow("ForgotPassword.aspx",'pu_forgot_password',450,300,"no");
}

function popup_AmIRegistered()
{
	oPoppedWindow = NewWindow("AmIRegistered.aspx",'pu_am_i_registered',450,300,"no");
}

function popup_directions()
{
	oPoppedWindow = NewWindow('Directions.aspx','pu_directions',800,600,'yes');
}

function FlipFilterDiv(sId, sIdLabel)
{
	if(document.getElementById(sId).style.display=='none') 
	{
		document.getElementById(sId).style.display='block';
		document.getElementById(sIdLabel).innerText='Close Filter';
	}
	else
	{
		document.getElementById(sId).style.display='none';
		document.getElementById(sIdLabel).innerText='Open Filter';
	}
}
