// JavaScript Document


function validate_mailingform ( )
{
    valid = true;

	if ( document.mailing.nameMailing.value == "Your name..." )
    {
        alert ( "Please fill in 'Your name'." );
        valid = false;
    }
	if ( document.mailing.emailMailing.value == "Your email address..." )
    {
        alert ( "Please fill in 'Your email address'." );
        valid = false;
    }

    return valid;
}

