function formProtect() {
	document.getElementById("contactform").setAttribute("action","../cgi-bin/forminfosender.pl");
	
    valid = true;

    if ( document.getElementById('confirm').value != "Email" )
    {
        alert ( "You must be a robot." );
		document.getElementById('confirm').value = "";
		document.getElementById('confirm').focus();
		valid = false;
    }

    return valid;

}