
<!--    


function validate_form(){

//=========================================================
//Begin Validate First Name Field

	if (densform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    densform.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================

//=========================================================
//Begin Validate Surname Field

	if (densform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    densform.surname.focus();
    return (false);
  }

  
//End Validate Surname Field
//=========================================================


//=========================================================
//Begin Validate EMail Field

	if (densform.email.value == "")
  {
    alert("Please enter a value for the Email field.");
    densform.email.focus();
    return (false);
  }  

//End Validate EMail Field

//=========================================================

//=========================================================
//Begin Validate Company Field

	if (densform.company.value == "")
  {
    alert("Please enter a value for the Company field.");
    densform.company.focus();
    return (false);
  }  

//End Validate Company Field

//=========================================================

  return (true);

  }

//-->

<!--    


function validate_quote_form(){
//=========================================================
//Begin Validate First Name Field
var densform = document.densform;
	if (densform.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    densform.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================

//=========================================================
//Begin Validate Surname Field

	if (densform.surname.value == "")
  {
    alert("Please enter a value for the Surname field.");
    densform.surname.focus();
    return (false);
  }

  
//End Validate Surname Field
//=========================================================


//=========================================================
//Begin Validate EMail Field

	if (densform.email.value == "")
  {
    alert("Please enter a value for the Email field.");
    densform.email.focus();
    return (false);
  }  

//End Validate EMail Field

//=========================================================

//=========================================================
//Begin Validate Company Field

	if (densform.company.value == "")
  {
    alert("Please enter a value for the Company field.");
    densform.company.focus();
    return (false);
  }  

//End Validate Company Field

//=========================================================

//=========================================================
//Begin Validate Alloy Field

	if (densform.alloy.value == "")
  {
    alert("Please enter a value for the Alloy field.");
    densform.alloy.focus();
    return (false);
  }  

//End Validate Alloy Field

//=========================================================

//=========================================================
//Begin Validate Size Field

	if (densform.size.value == "")
  {
    alert("Please enter a value for the Size field.");
    densform.size.focus();
    return (false);
  }  

//End Validate Size Field

//=========================================================

//=========================================================
//Begin Validate Quantity Field

	if (densform.quantity.value == "")
  {
    alert("Please enter a value for the Quantity field.");
    densform.quantity.focus();
    return (false);
  }  

//End Validate Quantity Field

//=========================================================


  return (true);

  }

//-->




