function career_Validator(theForm)
{
  	if (theForm.namefirst.value == "")
	{
		alert("Please enter your First Name.");
		theForm.namefirst.focus();
		return (false);
	}
	
	if (theForm.namelast.value == "")
	{
		alert("Please enter your Last Name.");
		theForm.ccnumber.focus();
		return (false);
	}
	
	if (theForm.email.value == "")
	{
		alert("Please enter your Email Address.");
		theForm.email.focus();
		return (false);
	}
	
	if ((theForm.email.value.indexOf('@',0) == -1) || (theForm.email.value.indexOf('.',0) == -1))
	{
		alert("Email Address is incorrectly formatted. Please enter again.");
		theForm.email.focus();
		return (false);
	}

	if (theForm.resume.value == "")
	{
		alert("Please include your resume before submitting.");
		theForm.resume.focus();
		return (false);
	}

  return (true);
}

