function parentLoad(targ) {
	window.opener.location.href=targ;
}

// Office locator validation
function isOLReady (elm) {
	for (i=0; i < document.forms.length; i++) {
		if (document.forms[i].postalCode != null) {
			pCode = document.forms[i].postalCode.value;
			if ((pCode > 0) && (pCode.length == 5)) {
				return true;
			} else {
				alert("Please enter a 5-digit ZIP Code.");
				return false;
			}
		}
	}
	return false;
}
