function validate_contact_form ( )
{
    valid = true;

    if ( document.staff_contact.name.value == "" )
    {
        alert ( "Please fill in the 'Name' box." );
        valid = false;
    }

    if ( document.staff_contact.email.value == "" )
	{
		alert ( "Please fill in the 'Email' box." );
		valid = false;
	}
	
	if ( document.staff_contact.message.value == "" )
	{
		alert ( "Please fill in a message to send to the staff member." );
		valid = false;
	}
	
    return valid;
}

function validate_feedback_form ( )
{
	valid = true;
	
	if ( document.drop_list.pname.value == "" )
	{
		alert ( "Please fill in your name" );
		valid = false;
	}
	
	if ( document.drop_list.pid.value == "" )
	{
		alert ( "Please fill in your VATSIM ID" );
		valid = false;
	}
	
	if ( document.drop_list.pemail.value == "" )
	{
		alert ( "Please fill in your email" );
		valid = false;
	}
	
	if ( document.drop_list.pcallsign.value == "" )
	{
		alert ( "Please fill in your callsign" );
		valid = false;
	}
	
	if ( document.drop_list.depfield.value == "" )
	{
		alert ( "Please fill in your Departure Field" );
		valid = false;
	}
	
	if ( document.drop_list.arrfield.value == "" )
	{
		alert ( "Please fill in your Arrival Field" );
		valid = false;
	}
	
	if ( document.drop_list.SubCat.value == "" )
	{
		alert ( "Please fill in the controllers facility \nNOTE - This must be done AFTER their position" );
		valid = false;
	}
	
	if ( document.drop_list.Category.value == "" )
	{
		alert ( "Please fill in the controllers position" );
		valid = false;
	}
	
	if ( document.drop_list.comments.value == "" )
	{
		alert ( "Please fill in comments about your experience here at the ZAU ARTCC." );
		valid = false;
	}
	
	return valid;
}
