function ValidateInput()
{
	var strErr = ""; strFocus = "";
	if (document.QuoteForm.QuoteType.value == '') {
		strErr = strErr + " - Select an insurance quote type.\n";
		strFocus = "QuoteType";
	}
	/*
	if (document.QuoteForm.FirstName.value == '') {
		strErr = strErr + " - Enter your first name.\n";
		if (strFocus == "") { strFocus = "FirstName"; }
	}	
	if (document.QuoteForm.LastName.value == '') {
		strErr = strErr + " - Enter your last name.\n";
		if (strFocus == "") { strFocus = "LastName"; }
	}	
	if (document.QuoteForm.ZipCode.value.search(/^\d{5}$/) == -1) {
		strErr = strErr + " - Enter valid zip code.\n";
		if (strFocus == "") { strFocus = "ZipCode"; }
	}
	*/
	if (strErr != "") {
		strErr = "Please, provide the following information:\n\n" + strErr;
		alert(strErr);
		eval("document.QuoteForm."+strFocus+".focus()");
		return false;
	}
	return true;
}