<!--
function editBus1()
{
var_NameofCompany = document.BusList.NameofCompany.value;
var_ContactPerson = document.BusList.ContactPerson.value;
var_Title = document.BusList.Title.value;
var_Address1 = document.BusList.Address1.value;
var_Address2 = document.BusList.Address2.value;
var_Phone = document.BusList.Phone.value;
var_Fax = document.BusList.Fax.value;
var_EMail = document.BusList.EMail.value;
var_SixMonths = document.BusList.SixMonths.value;
var_NineMonths = document.BusList.NineMonths.value;
var_OneYear = document.BusList.OneYear.value;
var_Category = document.BusList.Category.value;
var_Advertisement = document.BusList.Advertisement.value;

if (document.BusList.NameofCompany.value == '')
	{
	alert("Please indicate your Company, Business or Organization's Name");
	return false;
	}
if (document.BusList.ContactPerson.value == '')
	{
	alert("Who is the Contact Person of your business?");
	return false;
	}
if (document.BusList.Title.value == '')
	{
	alert("Title of the contact person? Manager, owner, etc.");
	return false;
	}
if (document.BusList.Address1.value == '')
	{
	alert("Please include your complete mailing address.");
	return false;
	}
if (document.BusList.Address2.value == '')
	{
	alert("Please include your city, state, and zip code number.");
	return false;
	}
if (document.BusList.Phone.value == '')
	{
	alert("Please include your phone number in case we need to contact you.");
	return false;
	}
if (document.BusList.Fax.value == '')
	{
	alert("Please include your Fax number. If none, say none.");
	return false;
	}
if (document.BusList.EMail.value == '')
	{
	alert("If you have an E-Mail address, please indicate that. Otherwise say none.");
	return false;
	}
if ((document.BusList.SixMonths.value == '') || (document.BusList.NineMonths.value == '') || (document.BusList.OneYear.value == ''))
	{
	alert ("Please indicate the duration of your advertisement.");
	return false;
	}
if (document.BusList.Category.value == '')
	{
	alert("Please indicate the Type/classification under which your ad should appear.");
	return false;
	}
if (document.BusList.Advertisement.value == '')
	{
	alert("Please write a brief description of your advertisement.");
	return false;
	}
document.BusList.submit();
return true;
}
//-->

