var gbIsIE;
var gDoc;
var gFrm;
function body_onLoad()
{
	if (document.all != null)
	{
		gbIsIE = true;
		gDoc = document.all;
	}
	else
	{
		gbIsIE = false;
		gDoc = document;
	}
	if (gDoc.frmForm != null)
		gFrm = gDoc.frmForm;
}
function verify(x){

if (x.txtName.value == ""){
 		alert("Please enter your name.");
 		document.frmapply.txtName.focus ()
 		return false;
 }
 if (x.txtEmail.value == ""){
 		alert("Please enter your Email Address.");
 		document.frmapply.txtEmail.focus ()
 		return false;
 }
 /*if (x.attCV.value.indexOf(".")==-1 && x.attCV.value!=""){	
	alert("Please use the browse button to find your CV, or leave this field blank.");
	document.frmapply.attCV.focus ()
	return false;
 }*/
	return true;
	document.frmapply.submit();

}