<!--
function checkWholeForm(theForm) {
    var why = "";
    why += checkRealname(theForm.realname.value);
    why += checkEmail(theForm.email.value);
    why += checkPhone(theForm.phone.value);
    why += checkCompany(theForm.company.value);
    why += checkBusiness(theForm.business.value);
    why += checkDomain(theForm.domain.value);
    if (why != "") {
       alert(why);
       return false;
    }
/*return true;*/
theForm.submit(); 
}

// -->