function Validate()
{
  if (emailCheck(document.contactform.email.value) == false)
    {
    alert("You MUST enter a VALID email address! Check and double check that your email is correct. Please use your company email address.");
    document.contactform.email.focus();
    return false;
    }
  if (document.contactform.realname.value == "")
    {
    alert("Please enter your name. This should be the name of the person or company intending to evaluate the software.");
    document.contactform.realname.focus();
    return false;
    }
  if (document.contactform.phone.value == "")
    {
    alert("Please enter your contact phone number with dialing codes.");
    document.contactform.phone.focus();
    return false;
    }
  if (document.contactform.what.value == "")
    {
    alert("Please select your particular interest.");
    document.contactform.what.focus();
    return false;
    }
  if (document.contactform.comments.value == "")
    {
    alert("Enter information about your company and what your particular interest is. The more information you put here the better.");
    document.contactform.comments.focus();
    return false;
    }
}

function Help(Context$)
{
  if (Context$ == "email")
    {
    Msg$ = " You MUST enter a VALID email address! Check and double check that your email is correct. Please use your company email address.";
    }  
  if (Context$ == "realname")
    {
    Msg$ = "Please enter your name or company name.";
    }  
  if (Context$ == "phone")
    {
    Msg$ = "Please enter your contact phone number with dialing codes.";
    }  
  if (Context$ == "comments")
    {
    Msg$ = "Enter information about your company and what your particular interest is. The more information you put here the better.";
    } 
  if (Context$ == "what")
    {
    Msg$ = "Enter what you are interested in.";
    } 
  if (Context$ == "country")
    {
    Msg$ = "Enter the country you reside in.";
    } 
  if (Context$ == "where")
    {
    Msg$ = "Enter how you found out about us.";
    } 
  alert(Msg$);
}
