
<!--
function new_window(url) {
helpWin = window.open(url,"Help","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=300,height=200,left=40,top=40");
}
// end -->
//-->


function validate_form(){

//=========================================================
//Begin Validate First Name Field

	if (ws_form.firstname.value == "")
  {
    alert("Please enter a value for the First Name field.");
    ws_form.firstname.focus();
    return (false);
  }

  
//End Validate First Name Field
//=========================================================




//=========================================================
//Begin Validate Address Field

	if (ws_form.address1.value == "")
  {
    alert("Please enter a value for the Address1 field.");
    ws_form.address1.focus();
    return (false);
  }  

//End Validate Address Field

//=========================================================


//=========================================================
//Begin Validate Address Field

	if (ws_form.address2.value == "")
  {
    alert("Please enter a value for the Address2 field.");
    ws_form.address2.focus();
    return (false);
  }  

//End Validate Address Field

//=========================================================



//=========================================================
//Begin Validate Units Field

	if (ws_form.units.value == "")
  {
    alert("Please enter a value for the Number of Units Required field.");
    ws_form.units.focus();
    return (false);
  }  

//End Validate Units Field

//=========================================================



  return (true);

  }
