function validateCompanyForm() {
      if (document.companyform.selname.value.length == 0) {
         window.alert("You need to enter your company name");
         document.companyform.selname.select(); 
         return false;
      }
      if (document.companyform.selname.value == "Your new company name goes here!") {
         window.alert("You need to enter your company name");
         document.companyform.selname.select(); 
         return false;
      }
      document.companyform.selname.value = document.companyform.selname.value.toUpperCase();
      if (document.companyform.selname.value.lastIndexOf("LIMITED") == -1) {
         document.companyform.selname.value = document.companyform.selname.value + " LIMITED";
      }
      return true;      
}