function submitNow(executionDir)
{
  var email = document.form1.Email.value;	
  var email1 = document.form1.EmailConfirm.value;
  var customerID = document.form1.CustomerID.value;	

  if(customerID == '' || email == ''){
    show_webpage("Must enter Customer ID and Email address to create a TM Mobile account!<br><br>Click browser's back button and <br>re-enter Customer ID or Email.<br><br>",executionDir);  
  }
  else if (email != email1){
    show_webpage("Email address does not match the confirmed email address!<br><br>Click browser's back button and <br>re-enter Email address.<br><br>",executionDir);
  }
  else if (echeck(email) == false){
    show_webpage("Email address appears to be invalid!<br><br>Click browser's back button and <br>re-enter Email address.<br><br>",executionDir);
  }
  else{
    document.form1.action = executionDir + "TM7Servlet?operation=Web_Signup&File_Type=htm&UserName=" + customerID + "&Email=" + email; 	
    document.form1.submit();
  }	
}
