function validate(frm)
{
        theform = frm;

	if(theform.firstName.value.length ==0)
	{
		alert('Please enter you first name');
		theform.firstName.focus();
		return false;
	}

if(theform.lastName.value.length ==0)
	{
		alert('Please enter a your last name');
		theform.lastName.focus();
		return false;
	}

if(theform.address.value.length == 0)
	{
		alert('Please enter  your address');
		theform.address.focus();
		return false;
	}

if(theform.city.value.length == 0)
	{
		alert('Please enter your city');
		theform.city.focus();
		return false;
	}

if(theform.state.value.length == 0)
	{
		alert('Please enter  your state');
		theform.state.focus();
		return false;
	}
	if(theform.zip.value.length == 0)
	{
		alert('Please enter your zip code');
		theform.zip.focus();
		return false;
	} 

	if(theform.phone.value.length == 0)
	{
		alert('Please enter a your phone number');
		theform.phone.focus();
		return false;
	}

}

