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 as we do not accept requests from free email accounts!");
    document.contactform.email.focus();
    return false;
    }
  if (document.contactform.realname.value == "")
    {
    alert("Please enter your name.");
    document.contactform.realname.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 as we do not accept requests from free email accounts!";
    }  
  if (Context$ == "realname")
    {
    Msg$ = "Please enter your 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$);
}
