function getCenter(oSel)
{
	var sVal = oSel.value;
	var sQString = "/";
	
	if (oSel.selectedIndex > 0)
	{
		switch (oSel.name)
		{
			case "centers":
			case "qp:ddlQPick":
				sQString += "oc_center_detail.asp?cid=" + oSel.value;
				break;
			
			case "msa":
				sQString += "oc_center_list.asp?msa=" + escape(oSel.value);
				break;
			
			case "state":
				sQString += "oc_center_list.asp?state=" + oSel.value;
				break;
			
			case "statemsa":
				var StateRegEx = /^[A-Z]{2}$/i;
				
				if (StateRegEx.test(oSel.value))
					sQString += "oc_center_list.asp?state=" + oSel.value;
				else
					sQString += "oc_center_list.asp?msa=" + escape(oSel.value);
				break;
			
			case "retailer":
				sQString += "oc_center_list.asp?retailer=" + oSel.options[oSel.selectedIndex].value + "&retailername=" + escape(oSel.options[oSel.selectedIndex].text);
				break;
			
			case "sqfootage":
				sQString += "oc_center_list.asp?sqfootage=" + oSel.value;
				break;
			
			case "rep":
				sQString += "oc_center_list.asp?rid=" + oSel.value + "&repname=" + escape(oSel.options[oSel.selectedIndex].text);
				break;
		}
		top.window.location.href = sQString;
	}
}

function popEmailSignup()
{
	oWin = window.open("http://edensandavant.mediaroom.com/subscribe.php", "oWin", "height=370,width=500,scrollbars=0,toolbar=0,location=0,status=0,resizeable=0");
}

function popPrintPg(sID, sPrtSct)
{
	oWin = window.open("oc_center_print.asp?cid=" + sID + "&prtsct=" + sPrtSct, "oWin", "top=0,left=0,height=650,width=950,location=0,toolbar=1,status=0,resizeable=0,scrollbars=1,menubar=1");
	oWin.focus();
}