<!--
      function validateForm() 
        {

          var intError;
          intError = 0;

	      var strError;
	      strError = 'The following fields are required:\n=========================\n\n';
          	      
	      if (document.quoteform.txtexpected_date_of_move.value == '') {intError = intError + 1; strError += intError +') "Expected Date of Move"\n';}
	      if (document.quoteform.txtphone.value == '')                 {intError = intError + 1; strError += intError +') "Phone"\n';}
		      
	      if (document.quoteform.txtfirst_name.value == '')            {intError = intError + 1; strError += intError +') "First Name"\n';}
	      if (document.quoteform.txtlast_name.value == '')             {intError = intError + 1; strError += intError +') "Last Name"\n';}

	      if (document.quoteform.txte_mail_address.value == '')        {intError = intError + 1; strError += intError +') "E-Mail Address"\n';}

	      if (document.quoteform.txtfrom_city.value == '')             {intError = intError + 1; strError += intError +') "From City"\n';}
	      if (document.quoteform.selfrom_state.value == '')            {intError = intError + 1; strError += intError +') "From State"\n';}
	      if (document.quoteform.txtfrom_zip.value == '')              {intError = intError + 1; strError += intError +') "From Zip"\n';}
	      

	      if (document.quoteform.txtto_city.value == '')               {intError = intError + 1; strError += intError +') "To City"\n';}
	      if (document.quoteform.selto_state.value == '')              {intError = intError + 1; strError += intError +') "To State"\n';}
	      if (document.quoteform.txtto_zip.value == '')                {intError = intError + 1; strError += intError +') "To Zip"\n';}
	      
          if (document.quoteform.txtvehicle_1.value == '')             {intError = intError + 1; strError += intError +') "Vehicle 1"\n';}	      
          
          if (document.quoteform.radcarrier_type.value == '')          {intError = intError + 1; strError += intError +') "Carrier Type"\n';}	      
          if (document.quoteform.radvehicle_operable.value == '')      {intError = intError + 1; strError += intError +') "Vehicle Operable"\n';}	      
          
          if (document.quoteform.selreturn_quote_via.value == '')      {intError = intError + 1; strError += intError +') "Method of Delivery"\n';}

	      if (intError > 0)
	        {
	          alert(strError);
	          return false;
	        }
          else
            {
              return true;
            }

        }

   var homeoff             = new Image();
   var homeon              = new Image();
       homeoff.src         = "images/home.gif"; 
       homeon.src          = "images/home_on.gif"; 

   var quoteoff             = new Image();
   var quoteon              = new Image();
       quoteoff.src         = "images/quote.gif"; 
       quoteon.src          = "images/quote_on.gif"; 

   var formsoff             = new Image();
   var formson              = new Image();
       formsoff.src         = "images/forms.gif"; 
       formson.src          = "images/forms_on.gif"; 

   var formoff             = new Image();
   var formon              = new Image();
       formoff.src         = "images/form.gif"; 
       formon.src          = "images/form_on.gif"; 

   var termsoff             = new Image();
   var termson              = new Image();
       termsoff.src         = "images/terms.gif"; 
       termson.src          = "images/terms_on.gif"; 

   var faqoff             = new Image();
   var faqon              = new Image();
       faqoff.src         = "images/faq.gif"; 
       faqon.src          = "images/faq_on.gif"; 
// -->
