function Validate()
{
  if (document.orderform.email.value == "")
    {
    alert("Please enter your email address. You MUST enter a correct email address. Check and double check that your email is correct before you submit your request");
    document.orderform.email.focus();
    return false;
    }
  if (emailCheck(document.orderform.email.value) == false)
    {
    document.orderform.email.focus();
    return false;
    }
  if (document.orderform.realname.value == "")
    {
    alert("Please enter your name.");
    document.orderform.realname.focus();
    return false;
    }
  if (document.orderform.what.value == "")
    {
    alert("Please enter the subject area.");
    document.orderform.what.focus();
    return false;
    }
  if (document.orderform.comments.value == "")
    {
    alert("Please enter your question or comments.");
    document.orderform.comments.focus();
    return false;
    }
}

function Help(Context$)
{
  if (Context$ == "email")
    {
    Msg$ = "You MUST enter a correct email address. Check and double check that your email is correct before you submit your request.";
    }  
  if (Context$ == "realname")
    {
    Msg$ = "This should be the name of the person making the enquiry.";
    }
  if (Context$ == "phone")
    {
    Msg$ = "Enter your full phone number.";
    } 
  if (Context$ == "what")
    {
    Msg$ = "Please enter a the  subject of you enquiry.";
    } 
  if (Context$ == "comments")
    {    
    Msg$ = "Enter any special instructions, questions or comments in this box.";
    }
  if (Context$ == "country")
    {
    Msg$ = "Select the country where you live or the country where your organization resides.";
    }

  if (Context$ == "title")
    {
    Msg$ = "Enter your title or position.";
    }
  if (Context$ == "organization")
    {
    Msg$ = "Enter your organization.";
    }
  if (Context$ == "address")
    {
    Msg$ = "Enter your mailing address or the address of your organization.";
    }
  if (Context$ == "city")
    {
    Msg$ = "Enter your city.";
    } 
  if (Context$ == "state")
    {
    Msg$ = "Enter your state.";
    } 
  if (Context$ == "zipcode")
    {
    Msg$ = "Enter your zip code or postal code.";
    } 


  alert(Msg$);
}

