return false; } else if (obj_type == "SINGLE_VALUE_RADIO" || obj_type == "SINGLE_VALUE_CHECKBOX") { if (obj.checked) return true; else return false; } else if (obj_type == "RADIO" || obj_type == "CHECKBOX") { for (i=0; i < obj.length; i++) { if (obj[i].checked) return true; } return false; } } function _CF_checkinteger(object_value) { //Returns true if value is a number or is NULL //otherwise returns false if (object_value.length == 0) return true; //Returns true if value is an integer defined as // having an optional leading + or -. // otherwise containing only the characters 0-9. var decimal_format = "."; var check_char; //The first character can be + - blank or a digit. check_char = object_value.indexOf(decimal_format) //Was it a decimal? if (check_char < 1) return _CF_checknumber(object_value); else return false; } function _CF_numberrange(object_value, min_value, max_value) { // check minimum if (min_value != null) { if (object_value < min_value) return false; } // check maximum if (max_value != null) { if (object_value > max_value) return false; } //All tests passed, so... return true; } function _CF_checknumber(object_value) { //Returns true if value is a number or is NULL //otherwise returns false if (object_value.length == 0) return true; //Returns true if value is a number defined as // having an optional leading + or -. // having at most 1 decimal point. // otherwise containing only the characters 0-9. var start_format = " .+-0123456789"; var number_format = " .0123456789"; var check_char; var decimal = false; var trailing_blank = false; var digits = false; //The first character can be + - . blank or a digit. check_char = start_format.indexOf(object_value.charAt(0)) //Was it a decimal? if (check_char == 1) decimal = true; else if (check_char < 1) return false; //Remaining characters can be only . or a digit, but only one decimal. for (var i = 1; i < object_value.length; i++) { check_char = number_format.indexOf(object_value.charAt(i)) if (check_char < 0) return false; else if (check_char == 1) { if (decimal) // Second decimal. return false; else decimal = true; } else if (check_char == 0) { if (decimal || digits) trailing_blank = true; // ignore leading blanks } else if (trailing_blank) return false; else digits = true; } //All tests passed, so... return true } function _CF_checkrange(object_value, min_value, max_value) { //if value is in range then return true else return false if (object_value.length == 0) return true; if (!_CF_checknumber(object_value)) { return false; } else { return (_CF_numberrange((eval(object_value)), min_value, max_value)); } //All tests passed, so... return true; } function _CF_checkphone(object_value) { if (object_value.length == 0) return true; if (object_value.length != 12) return false; // check if first 3 characters represent a valid area code if (!_CF_checknumber(object_value.substring(0,3))) return false; else if (!_CF_numberrange((eval(object_value.substring(0,3))), 100, 1000)) return false; // check if area code/exchange separator is either a'-' or ' ' if (object_value.charAt(3) != "-" && object_value.charAt(3) != " ") return false // check if characters 5 - 7 represent a valid exchange if (!_CF_checknumber(object_value.substring(4,7))) return false; else if (!_CF_numberrange((eval(object_value.substring(4,7))), 100, 1000)) return false; // check if exchange/number separator is either a'-' or ' ' if (object_value.charAt(7) != "-" && object_value.charAt(7) != " ") return false; // make sure last for digits are a valid integer if (object_value.charAt(8) == "-" || object_value.charAt(8) == "+") return false; else { return (_CF_checkinteger(object_value.substring(8,12))); } } function _CF_checkapplication(_CF_this) { if (!_CF_hasValue(_CF_this.Name_First, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.Name_First, _CF_this.Name_First.value, "Please enter your first name.")) { return false; } } if (!_CF_hasValue(_CF_this.Name_Last, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.Name_Last, _CF_this.Name_Last.value, "Please enter your last name.")) { return false; } } if (!_CF_hasValue(_CF_this.StuNum, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.StuNum, _CF_this.StuNum.value, "Please enter your student number.")) { return false; } } if (!_CF_hasValue(_CF_this.Address, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.Address, _CF_this.Address.value, "Please enter your address.")) { return false; } } if (!_CF_hasValue(_CF_this.City, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.City, _CF_this.City.value, "Please enter your city.")) { return false; } } if (!_CF_hasValue(_CF_this.ST, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.ST, _CF_this.ST.value, "Please enter your state.")) { return false; } } if (!_CF_hasValue(_CF_this.Zip, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.Zip, _CF_this.Zip.value, "Please enter your zip code.")) { return false; } } if (!_CF_hasValue(_CF_this.Phone, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.Phone, _CF_this.Phone.value, "Please enter your phone number, including area code. xxx-xxx-xxxx")) { return false; } } if (!_CF_checkphone(_CF_this.Phone.value)) { if (!_CF_onError(_CF_this, _CF_this.Phone, _CF_this.Phone.value, "Please enter your phone number, including area code. xxx-xxx-xxxx")) { return false; } } if (!_CF_hasValue(_CF_this.Email, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.Email, _CF_this.Email.value, "Please enter your Saint Leo Email address.")) { return false; } } if (!_CF_hasValue(_CF_this.GPA, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.GPA, _CF_this.GPA.value, "Please enter your GPA.")) { return false; } } if (!_CF_hasValue(_CF_this.Major1, "SELECT" )) { if (!_CF_onError(_CF_this, _CF_this.Major1, _CF_this.Major1.value, "Please select your current major.")) { return false; } } if (!_CF_hasValue(_CF_this.Class, "SELECT" )) { if (!_CF_onError(_CF_this, _CF_this.Class, _CF_this.Class.value, "Please select your current year of study.")) { return false; } } if (!_CF_hasValue(_CF_this.Signature, "TEXT" )) { if (!_CF_onError(_CF_this, _CF_this.Signature, _CF_this.Signature.value, "Please enter your Signature.")) { return false; } } return true; } //-->

Saint Leo Criminal Justice/ Criminology Association Application Form

Thank you for your interest in the Saint Leo Criminal Justice/ Criminology Association. Please fill out the following information to enroll into the club.

These are the guidelines set for the Criminal Justice/ Criminology Association:
  • You must have completed at least 12 credit hours at Saint Leo University.
  • You must maintain a high GPA of at least a 2.5. This GPA can fall below this for only 1 semester.
  • You must be majoring in a legal field. (i.e. Criminology/ Criminal Justice).
If you meet the guidelines above, please fill out the information below for enrollment into the group.

First Name:
Last Name:
Student Number:

Mailing Address:
City:
ST:
Zip:

Phone:
Email:
GPA:

Current Major:
Year of Study:  

Your application will be automatically submitted. Please type your name in the space below.

Date: January 5, 2009 Signature:

By typing your name above you agree that everything that you have filled out on this form is true and correct to the best of your knowledge. Giving misleading or false information goes against Saint Leo and the Criminal Justice/ Criminology Association's Honor Code. Any false information given will make you subject to being disqualified for admission into the Association.