<!--

function validate_form_contact ( )
{
    valid = true;

    if ( document.form_contact.firstname.value == "" )
    {
        alert ( "Please fill in your First Name." );
        valid = false;
    }
		
		if ( document.form_contact.lastname.value == "" )
    {
        alert ( "Please fill in your Last Name." );
        valid = false;
    }
		
		if ( document.form_contact.address.value == "" )
    {
        alert ( "Please fill in your Address." );
        valid = false;
    }	
		
		if ( document.form_contact.city.value == "" )
    {
        alert ( "Please fill in your City." );
        valid = false;
    }
		
		if ( document.form_contact.state.value == "" )
    {
        alert ( "Please fill in your State." );
        valid = false;
    }
		
		if ( document.form_contact.zip.value == "" )
    {
        alert ( "Please fill in your Zip Code." );
        valid = false;
    }
		
		if ( document.form_contact.gender.value == "" )
    {
        alert ( "Please fill in your Gender." );
        valid = false;
    }
		
		if ( document.form_contact.age.value == "" )
    {
        alert ( "Please fill in your Age." );
        valid = false;
    }
	
	if ( document.form_contact.email.value == "" )
    {
        alert ( "Please fill in your Email Address." );
        valid = false;
    }
	
	if ( document.form_contact.phone.value == "" )
    {
        alert ( "Please fill in your Phone Number." );
        valid = false;
    }
			
    return valid;
}

//-->
