function checkCheckBox(f){
if (f.agree.checked == false )
{
alert('You must agree to the terms of this application before submission');
return false;
}else
return true;
}