
<!--

function validate_form ( )
{
    valid = true;

    if ( document.formsend.email.value == "" || document.formsend.email2.value == "")
    {
        alert ( "Please enter both email fields!" );
        valid = false;
    }

    return valid;
}

function validate_signup ( )
{
    valid = true;

    if ( document.signup.Name.value == "" || document.signup.Email.value == "" || document.signup.Organization.value == "" || document.signup.Reason.value == "")
    {
        alert ( "Please complete all fields!" );
        valid = false;
    }

    else 
	{
	alert ( "Your request is being reviewed, your username and password will be sent via email once approved. Thank you." );
	}
	
}


//-->

