function openNewWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function openWinForTool(page) {
	OpenWin = this.open(page, "NewWin", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes, width=900, height=650");
}

function pledgeMapSetup()
{
	$("#pf_sign_pledge").submit( function ()
	{
		var toReturn = true;
		
		if ( $('#pledgeStateSelect')[0].value == "")
		{
			toReturn = false;
		}	
		return toReturn;
	});
}
function openWin6(page) {
	OpenWin = this.open(page, "NewWin", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes, width=425, height=550");
}

function show(layer_ref)
{
	document.getElementById(layer_ref).style.display = "block"; }

function hide(layer_ref)
{
	document.getElementById(layer_ref).style.display = "none"; }