

<!--    





function validate_form(){



//=========================================================

//Begin Validate First Name Field



	if (threeform.name.value == "")

  {

    alert("Please enter a value for the Contact Name field.");

    threeform.name.focus();

    return (false);

  }



  

//End Validate First Name Field

//=========================================================





//=========================================================

//Begin Validate EMail Field



	if (threeform.email.value == "")

  {

    alert("Please enter a value for the Email field.");

    threeform.email.focus();

    return (false);

  }  



//End Validate EMail Field



//=========================================================





//=========================================================

//Begin Validate Enquiry Field



	if (threeform.enquiry.value == "")

  {

    alert("Please enter an enquiry.");

    threeform.enquiry.focus();

    return (false);

  }



  

//End Validate Enquiry Field



//=========================================================



  return (true);



  }

  
  

function validate_form_xbox(){



//=========================================================

//Begin Validate First Name Field



	if (threeform.name.value == "")

  {

    alert("Please enter a value for the Contact Name field.");

    threeform.name.focus();

    return (false);

  }



  

//End Validate First Name Field

//=========================================================





//=========================================================

//Begin Validate EMail Field



	if (threeform.email.value == "")

  {

    alert("Please enter a value for the Email field.");

    threeform.email.focus();

    return (false);

  }  



//End Validate EMail Field



//=========================================================



//=========================================================

//Begin Validate Contact Field



	if (threeform.telephone.value == "")

  {

    alert("Please enter a value for the Contact Telephone field.");

    threeform.telephone.focus();

    return (false);

  }  



//End ValidateContact Field



//=========================================================




//=========================================================

//Begin Validate Address Field



	if (threeform.address.value == "")

  {

    alert("Please enter an address.");

    threeform.address.focus();

    return (false);

  }



  

//End Validate Enquiry Field



//=========================================================

//=========================================================

//Begin Validate Fault Field



	if (threeform.fault.value == "")

  {

    alert("Please enter fault.");

    threeform.fault.focus();

    return (false);

  }



  

//End Validate FaultField



//=========================================================


  return (true);



  }


//-->


