function formProtect() {
	document.getElementById("botprotection").setAttribute("action","_gdForm/webformmailer.asp");
}
function validateForm()
{
    valid = false;

    if ( document.getElementById('verify').value != "stopspam123" )
    {
        alert ( "You must correctly type the text in the image to submit this form." );
		document.getElementById('verify').value = "";
		document.getElementById('verify').focus();
		valid = false;
    }
	else if (document.getElementById('verify').value == "stopspam123")
		{
			formProtect();
			valid=true;
		}
    return valid;
}