function show_job()
{
return true;
}

function validate_job_application()
{
document.getElementById('ok').value='911';
if (document.getElementById("applicant_name").value.length<2)
	{
	alert("Please enter your Name");
	return false;
	}
email=document.getElementById("email").value;
if ((email.length>1) && (email.length<6))
	{
	alert("Please enter a valid Email Address");
	return false;
	}
tel=document.getElementById("tel").value;
if ( (tel.length>1) && (tel.length<6) )
	{
	alert("Your Phone Number is invalid.");
	return false;
	}
if (email.length==0 && tel.length==0)
	{
	alert("Please enter an Email Address or Telephone Number so we can contact you.");
	return false;
	}
if ( (document.getElementById("cv").value.length<8) && (document.getElementById("cover_note").value.length<20))
	{
	alert("Please upload your CV or write a small Cover Note");
	return false;
	}
return true;
}