// JavaScript Document
function Information()
{
	var obj = document.getElementById('aboutparainfo');

	if (obj.style.display == 'block')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = 'block';
	}
}

function Additional()
{
	var obj = document.getElementById('aboutparaadditional');

	if (obj.style.display == 'block')
	{
		obj.style.display = 'none';
	}
	else
	{
		obj.style.display = 'block';
	}
}

function validate()
{
	if (document.form1.InspectionZip.value.length<4)
	{
	return true;
	alert("You must enter a zip code. ")
	return false;
	}
	else
	{return true; }
}

function ClearTheOtherTwo(arg)
{

switch(arg)
{

case 1:
document.forms[0].State.value="";
document.forms[0].Area_Code.value="";
document.forms[0].Last_Name.value="";
document.forms[0].Company.value="";
//document.forms[0].City.value="";
break;

case 2:
document.forms[0].InspectionZip.value="";
document.forms[0].Area_Code.value="";
document.forms[0].Last_Name.value="";
document.forms[0].Company.value="";
//document.forms[0].City.value="";
break;

case 3:
document.forms[0].InspectionZip.value="";
document.forms[0].State.value="";
document.forms[0].Area_Code.value="";
document.forms[0].Last_Name.value="";
document.forms[0].Company.value="";
break;

case 4:
document.forms[0].InspectionZip.value="";
document.forms[0].State.value="";
break;
}

}