function validateQuote(lang){
	var ok_continue = true;
	
	if (document.quoteForm.contactname.value.length == 0 || document.quoteForm.contactname.value == "" || document.quoteForm.contactname.value == " "){
		ok_continue = false;
	}
	if (document.quoteForm.companyaddress.value.length == 0 || document.quoteForm.companyaddress.value == "" || document.quoteForm.companyaddress.value == " "){
		ok_continue = false;
	}
	if (document.quoteForm.city.value.length == 0 || document.quoteForm.city.value == "" || document.quoteForm.city.value == " "){
		ok_continue = false;
	}
	if (document.quoteForm.telephone.value.length == 0 || document.quoteForm.telephone.value == "" || document.quoteForm.telephone.value == " "){
		ok_continue = false;
	}
	if (document.quoteForm.stateprov.value.length == 0 || document.quoteForm.stateprov.value == "" || document.quoteForm.stateprov.value == " "){
		ok_continue = false;
	}
	if (document.quoteForm.zip.value.length == 0 || document.quoteForm.zip.value == "" || document.quoteForm.zip.value == " "){
		ok_continue = false;
	}
	if (document.quoteForm.country.value.length == 0 || document.quoteForm.country.value == "" || document.quoteForm.country.value == " "){
		ok_continue = false;
	}
	
	if (ok_continue){
		document.quoteForm.submit();
	} else {
		if (lang == "eng"){
			alert("You must provide values for all required (*) fields.");
		} else {
			alert("You must provide values for all required (*) fields.");
		  }
	  }
}

