function Application_validate()
{
	if (document.Application.appIAccept1.checked)
		{
		document.Application.submit()
		}
	else
		{
		alert( "You must accept the privacy declarations" )
		return false;
		}
}

function Contact_validate()
{
	document.Contact.submit()
}

function Insurance_validate()
{
	document.Insurance.submit()
}

