function formError( message, obj ){
	var out = "Form is incomplete\n============================\n\n";
	out += message;
	alert( out );
	if( obj ){
		obj.focus(); 
	}
	return;
}

function infoCheck(f){
	var er = "";
	var erObj = false;

if( f.fname.value == "" ){
	er += " - Name is required \n";
	if( !erObj ){ erObj = f.fname; }
}

if( f.address.value == "" ){
	er += " - Address is required \n";
	if( !erObj ){ erObj = f.address; }
}

if( f.city.value == "" ){
	er += " - City is required \n";
	if( !erObj ){ erObj = f.city; }
}

if( f.state.value == "" ){
	er += " - State is required \n";
	if( !erObj ){ erObj = f.state; }
}

if( f.zipcode.value == "" ){
	er += " - Postal Code is required \n";
	if( !erObj ){ erObj = f.zipcode; }
}

if( f.email.value == "" ){
	er += " - email address is required \n";
	if( !erObj ){ erObj = f.email; }
}

	if( er == "" ){ return true; }else{ formError( er, erObj );	return false; }

}

