/*
 * A bit of Razzmatazz for HealhProfessions.com
 * Copyright 2006 TMG Media Group
 */
function a(txt) {
	self.status = txt
}

function b() {
	self.status = ""
}

// 'validate' the ZIP Code Lookup form
function submitCareersInForm(careersInForm) {
	if (careersInForm.PC.value == "") {
		alert("Please enter a zip code.");
		return false;
	} else return true;
}

// do a career jump (bipass the Submit button)
function careerJump(selectObj) {
	location=selectObj.value;
}

// do a focus/blur swap of text for an input element
function inputFocusBlur(obj, text) {
	if (obj.value == text)
		obj.value = '';
	else if (obj.value == '')
		obj.value = text;
}