function mySubmitRoutine(){
   var errors = false;
   
   if(document.location.protocol == "file:"){
      alert('You are using an offline version of the csSoft Web site. This feature is only available if you are online.');
      return false;
   }
   
   // CHECK ALL VALUES:
   var isFNameOk = isNameComplete('download','firstname');
   
   if(isFNameOk == true){
      var isLNameOk = isNameComplete('download','lastname');
      
      if (isLNameOk == true){
         var isEmailOk = isEmailValid('download','email');
         
         if(isEmailOk == true){
         }else{
            errors = true;
         }
      }else{
         errors = true;
      }
   }else{
      errors = true;
   }
   
   
   // IF NO ERRORS, SUBMIT FORM DATA
   if(errors == false){
      // SUBMIT FORM
      document.download.submit();
   }else{
      return false;
   }
}