<!--

function ValidateForm()
{

// checks f_name (not blank), l_name (not blank) & email (includes 1 @ symbol)

     if (document.vcsy_careers.elements["form[f_name]"].value.length < 1)
    {        alert("Please enter your first name!");
        document.vcsy_careers.elements["form[f_name]"].focus();
        return false;
    }
		
     if (document.vcsy_careers.elements["form[l_name]"].value.length < 1)
    {        alert("Please enter your last name!");
        document.vcsy_careers.elements["form[l_name]"].focus();
        return false;
    }
	
     if (document.vcsy_careers.elements["form[email]"].value.indexOf('@',0) == -1)
    {        alert("Please enter a valid email!");
        	return false;
    }			

}
//-->