function verify()
{

	var name = document.buildChicken.uname.value;
	if ( name < " " )
	{
		alert("You must type your name in.");
		document.buildChicken.uname.focus();
		return false;
	}

	var email = document.buildChicken.email.value;
	if ( email < " " )
	{
		alert("You must enter your email address so we can contact you.");
		document.buildChicken.email.focus();
		return false;
	}


	var add1 = document.buildChicken.addr_line_1.value;
	if ( add1 < " " )
	{
		alert("You must enter the first line of your address for shipping.");
		document.buildChicken.addr_line_1.focus();
		return false;
	}


	var city = document.buildChicken.city.value;
	if ( city < " " )
	{
		alert("You must enter the city of your address for shipping.");
		document.buildChicken.city.focus();
		return false;
	}


	var state = document.buildChicken.state.value;
	if ( state < " " )
	{
		alert("You must enter the state of your address for shipping.");
		document.buildChicken.state.focus();
		return false;
	}


	var zip = document.buildChicken.zip.value;
	if ( zip < " " )
	{
		alert("You must enter the zip code of your address for shipping.");
		document.buildChicken.zip.focus();
		return false;
	}

	return true;

}
