function checkme() {
missinginfo = "";
if (!document.form.authorize.checked) {
missinginfo += "\n - You must be authorized to request information for this business";
} 
if (missinginfo != "") {
missinginfo ="Required information is missing: \n" +
missinginfo + "\n\n Please check box if this applies and resubmit.";
alert(missinginfo);
return false;
}
else { 
return true;
}
}
