// JavaScript Document
function requireinput(checkform){
if ((checkform.name.value =="")||
(checkform.email.value=="")||
(checkform.company.value=="")||
(checkform.captcha.value!="753be"))
{
var alertmsg="All required fields have not been completed or the verification code is incorrect, please review the form.";
alert(alertmsg);
}
else{
checkform.submit()
}
}
