function validForm_DSS()
{
	var aValidation = new Array();
	var i=0;
	
	with (document.frmDSS)
	{
		aValidation[i++] = new textRequired("Zip Code",zipCode);
		aValidation[i++] = new lengthRequiredNbr("Zip Code",zipCode,5);
		aValidation[i++] = new validFrmtNumber("Zip Code",zipCode);
	}
	return validate2(aValidation,document.frmDSS);
}
function validForm_Dist()
{
	var aValidation = new Array();
	var i=0;
	
	with (document.frmDist)
	{
		aValidation[i++] = new lengthRequiredNbr("Zip Code",zipCode,5);
		aValidation[i++] = new validFrmtNumber("Zip Code",zipCode);
	}
	return validate2(aValidation,document.frmDist);
}
function selectByArea(sArea)
{
	with (document.frmMap)
	{
		area.value = sArea;
		submit();
	}
}
function selectOfficeType(oSel)
{
	var sVal = oSel.options[oSel.selectedIndex].value;
	
	switch (sVal)
	{
		case "1":
			window.location.href = "/salesSupportLocator_Dist.cfm";
			break;
		case "2":
			window.location.href = "/salesSupportLocator.cfm";
			break;
		case "3":
			window.location.href = "/salesSupportLocator_Service.cfm";
			break;
		case "4":
			window.location.href = "/salesSupportLocator_Spec.cfm";
			break;
		case "5":
			window.location.href = "/CPP_CIP/";
			break;
		case "6":
			window.location.href = "/salesSupportLocator.cfm?KS=1";
			break;
		case "7":
			window.location.href = "/POPI/";
			break;
	}
}
