function SendMailRq(){
theCode = '';

theCode="mailto:"  +
    document.mailForm.toAddress.value+"?"
    theCode +="subject=" +
    document.mailForm.theSubject.value +"&";

theCode +="body="

if (document.mailForm.theCompanyName.value == ""){
    alert('Company Name is required field.');
    document.mailForm.theName.focus();
    return;}
theCode +="%0A"+
    "Company Name:%20"+document.mailForm.theCompanyName.value;

if (document.mailForm.theFirstName.value == ""){
    alert('First Name is required field.');
    document.mailForm.theFirstName.focus();
    return;}
theCode +="%0A"+
    "First Name:%20"+document.mailForm.theFirstName.value;

if (document.mailForm.theLastName.value == ""){
    alert('Last Name is required field.');
    document.mailForm.theLastName.focus();
    return;}
theCode +="%0A"+
    "Last Name:%20"+document.mailForm.theLastName.value;

if (document.mailForm.thePhone.value == ""){
    alert('Phone is required field.');
    document.mailForm.thePhone.focus();
    return;}
theCode +="%0A"+
    "Phone:%20"+document.mailForm.thePhone.value;

if (document.mailForm.theEMail.value == ""){
    alert('E-mail is required field.');
    document.mailForm.theEMail.focus();
    return;}
theCode +="%0A"+
    "E-mail:%20"+document.mailForm.theEMail.value;

theCode +="%0A"+
    "Type of Business:%20"+document.mailForm.theBusinessType.value;

theCode +="%0A"+
    "Resell Products:%20"+document.mailForm.theResellProducts.value;

theCode +="%0A"+
    "Country:%20"+document.mailForm.theCountry.value;

theCode +="%0A"+
    "State/Province:%20"+document.mailForm.theState.value;

alert("Your request e-mail is generated. Please send it after you close this message box and you will receive reply within the next two business days");

window.open(theCode);
}

