function validate ( )
{
	var valid = "0123456789-";
	var hyphencount = 0;

    if ( document.donation.person.value == "" )
    {
        alert ( "Please fill in your 'Name'" );
        return false
    }
	
	if ( document.donation.address.value == "" )
    {
        alert ( "Please fill in your 'Address'" );
        return false
    }
	 
	if ( document.donation.city.value == "" )
    {
        alert ( "Please fill in your 'City'" );
        return false
    }
	
	if ( document.donation.state.value == "" )
    {
        alert ( "Please fill in your 'State'" );
        return false
    }
	
	if ( document.donation.zip.value == "" )
    {
        alert ( "Please fill in your 'Zip Code'" );
        return false
    }
	
    return true;
}

