// JavaScript Document
function validate_form ( )
{
    valid = true;
    if ( document.actreview.memnumber.value == "" )
    {
        alert ( "Please fill in the 'Member Number' box." );
        return (false);
    }

    if ( document.actreview.fname.value == "" )
    {
        alert ( "Please fill in the 'First Name' box." );
        return (false);
    }
	
	 if ( document.actreview.lname.value == "" )
    {
        alert ( "Please fill in the 'Last Name' box." );
        return (false);
    }
	
	 if ( document.actreview.suburb.value == "" )
    {
        alert ( "Please fill in the 'Suburb' box." );
        return (false);
    }
	 if ( document.actreview.postcode.value == "" )
    {
        alert ( "Please fill in the 'Post Code' box." );
        return (false);
    }
	 if ( document.actreview.state.value == "" )
    {
        alert ( "Please fill in the 'State' box." );
        return (false);
    }
		 if ( document.actreview.comments.value == "" )
    {
        alert ( "Please fill in the 'Comments' box." );
        return (false);
    }

    return (true);
}
