<!--

function validate_form ( )
{
	valid = true;

        if ( document.nominate_form.a_sysAdminname.value == "" )
        {
                alert ( "Please fill in the 'Your Sys Admin Name' box." );
                valid = false;
        }
		
		 if ( document.nominate_form.b_sysAdminemail.value == "" )
        {
                alert ( "Please fill in the 'Your Sys Admin Email' box." );
                valid = false;
        }
		
		 if ( document.nominate_form.c_SysAdmincompany.value == "" )
        {
                alert ( "Please fill in the 'Your Sys Admin Company' box." );
                valid = false;
        }
			 if ( document.nominate_form.d_PeopleSupported.value == "" )
        {
                alert ( "Please fill in the 'Number of People Supported' box." );
                valid = false;
        }
			 if ( document.nominate_form.e_ComputersSupported.value == "" )
        {
                alert ( "Please fill in the 'Number of Computers Supported' box." );
                valid = false;
        }
			 if ( document.nominate_form.f_Nominatorname.value == "" )
        {
                alert ( "Please fill in the 'Your Full Name' box." );
                valid = false;
        }
		 if ( document.nominate_form.g_NomAddress.value == "" )
        {
                alert ( "Please fill in the 'Your Address' box." );
                valid = false;
        }
			 if ( document.nominate_form.h_NomCity.value == "" )
        {
                alert ( "Please fill in the 'Your City' box." );
                valid = false;
        }
				 if ( document.nominate_form.j_Nomzip.value == "" )
        {
                alert ( "Please fill in the 'Your Zip' box." );
                valid = false;
        }
				 if ( document.nominate_form.l_Nomphone.value == "" )
        {
                alert ( "Please fill in the 'Your Phone Number' box." );
                valid = false;
        }
		 if ( document.nominate_form.m_Nomemail.value == "" )
        {
                alert ( "Please fill in the 'Your Email' box." );
                valid = false;
        }
		 if ( document.nominate_form.n_reason.value == "" )
        {
                alert ( "Please fill in the 'Reason' box." );
                valid = false;
        }
		  if ( document.nominate_form.o_rules.checked == false )
        {
                alert ( "Please check the 'I agree to the rules' box." );
                valid = false;
        }





		

       

        return valid;
}

//-->
