// JavaScript Document

/* acceptTerms.js

// Created by Tyler Williamson

// 02/15/2010
*/
function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('To post a resume on the UGA SMIS site, you must agree to the terms by checking the check box.  If you feel you have reached this message in error please contact the VP of Web Development.');
    return false;
  } else
    return true;
}
