function validate_emp()
{
	if (document.applyEmp.empCode.value != "Beaumont")
	{
		alert("Please enter the word Beaumont into the box to continue. Please note the B is capitalized.");
		document.applyEmp.empCode.focus();
		return (false);
	}
	
	return(true);
	
}
