function auditform()
{
var bValid = true;

	if (document.form1.name != null)
	{
		if (document.form1.name.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.address != null)
	{
		if (document.form1.address.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.city != null)
	{
		if (document.form1.city.value == "")
		{
			bValid = false;
		}
	}
	
	if (document.form1.state != null)
	{
		if (document.form1.state.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.zip != null)
	{
		if (document.form1.zip.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.country != null)
	{
		if (document.form1.country.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.phone != null)
	{
		if (document.form1.phone.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.email != null)
	{
		if (document.form1.email.value == "")
		{
			bValid = false;
		}
	}
	
	if (!bValid)
	{
		alert("Please provide all required information");
	}	
	
	return(bValid);

}

function auditform2()
{
var bValid = true;

	if (document.form1.txtname != null)
	{
		if (document.form1.txtname.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.txtaddress != null)
	{
		if (document.form1.txtaddress.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.txtcity != null)
	{
		if (document.form1.txtcity.value == "")
		{
			bValid = false;
		}
	}
	
	if (document.form1.txtstate != null)
	{
		if (document.form1.txtstate.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.txtzip != null)
	{
		if (document.form1.txtzip.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.txtphone != null)
	{
		if (document.form1.txtphone.value == "")
		{
			bValid = false;
		}
	}

	if (document.form1.txtemail != null)
	{
		if (document.form1.txtemail.value == "")
		{
			bValid = false;
		}
	}
	
	if (!bValid)
	{
		alert("Please provide all required information");
	}	
	
	return(bValid);




}