function isDate(dateStr) {
var datePat = /^(\d{1,2})(\/|-)(\d{1,2})(\/|-)(\d{4})$/;
var matchArray = dateStr.match(datePat); //check format
if (matchArray == null) return false;
var iMonth = matchArray[1]; // parse date into variables
var iDay = matchArray[3];
var iYear = matchArray[5];
if (iMonth < 1 || iMonth > 12) return false;
if (iDay < 1 || iDay > 31) return false;
if ((iMonth==4 || iMonth==6 || iMonth==9 || iMonth==11) && iDay==31) return false;
if (iMonth == 2) { // check for february 29th
var isleap = (iYear % 4 == 0 && (iYear % 100 != 0 || iYear % 400 == 0));
if (iDay > 29 || (iDay == 29 && !isleap)) return false;
}
return true;
}
function FixDate(oMonth, oDay, oYear) {
var iMonth = parseInt(oMonth[oMonth.selectedIndex].value);
var iDay = parseInt(oDay[oDay.selectedIndex].value);
var iYear = parseInt(oYear[oYear.selectedIndex].value);
var iMax = 31;
if (iMonth == 2) {
if ((((iYear % 4) == 0) && ((iYear % 100) != 0)) || ((iYear % 400) == 0)) {
iMax = 29;
}
else {
iMax = 28;
}
}
else if ((iMonth == 4) || (iMonth == 6) || (iMonth == 9) || (iMonth == 11)) {
iMax = 30;
}
oDay.length = iMax;
for (var i=iMax; i > 28; i--) {
oDay[i - 1].text = i;
oDay[i - 1].value = i;
}
if (iDay > iMax)
oDay.selectedIndex = (iMax - 1);
}
function phoneIsValid(Obj,sLabel) {
var sPhone = Obj.value;
var sPhoneTemp = sPhone;
sPhone = '';
var sNumbers = '1234567890';
for (var i=0;i<sPhoneTemp.length;i++) {
if (sNumbers.indexOf(sPhoneTemp.charAt(i)) > -1) {
sPhone += sPhoneTemp.charAt(i);
}
}
if (sPhone.charAt(0) == '1' || sPhone.charAt(0) == 1) {
sPhone = sPhone.substring(1,(sPhone.length));
}
if (sPhone.length != 10) {
return sLabel + ' must be a 10 digit number\n';
}
else { 
Obj.value = sPhone;
}
var sAreaCode = sPhone.substring(0,3);
var sPrefix = sPhone.substring(3,6);
var sNumber = sPhone.substring(6,10);
ary7NotAllowed = new Array('1234567','4567890','0000000','1111111','2222222','3333333','4444444','5555555','6666666','7777777','8888888','9999999','3456789','4567890')
ary3NotAllowed = new Array('000','911','555','012','123');
for (var i=0;i<ary7NotAllowed.length;i++) {
if (sPrefix.toString() + sNumber.toString() == ary7NotAllowed[i])  {
return sLabel + ' must be a valid phone number\n';
}
}
for (var i=0;i<ary3NotAllowed.length;i++) {
if (sPrefix.toString() == ary3NotAllowed[i].toString()) {
return sLabel + ' must be a valid phone number\n';
}
}
return '';
}
function ValidateData(oPrmForm) { 
var bBrowserGood = false;
var bBrowserDrawsBordersCorrectly = false;
var sBrowser = "Unknown";
var s;
var f;
if (navigator.appName == "Netscape") {
sBrowser = "Netscape";
if (parseFloat(navigator.appVersion) >= 5) {
bBrowserGood = true;
bBrowserDrawsBordersCorrectly = true;
}
}
else if (navigator.appName == "Microsoft Internet Explorer") {
sBrowser = "IE";
if (parseFloat(navigator.appVersion) >= 4) {
bBrowserGood = true;
}
}
var bReturn = true;
var bFieldGood = true;var sErrors = '';
bFieldGood = true;
if (oPrmForm.firstname.value.length > 0) {
}
else {
sErrors = sErrors + 'First Name missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.firstname.style.borderLeftColor = 'buttonface';
oPrmForm.firstname.style.borderTopColor = 'buttonface';
oPrmForm.firstname.style.borderRightColor = 'buttonface';
oPrmForm.firstname.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.firstname.style.borderLeftColor = 'tomato';
oPrmForm.firstname.style.borderTopColor = 'tomato';
oPrmForm.firstname.style.borderRightColor = 'tomato';
oPrmForm.firstname.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.lastname.value.length > 0) {
}
else {
sErrors = sErrors + 'Last Name missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.lastname.style.borderLeftColor = 'buttonface';
oPrmForm.lastname.style.borderTopColor = 'buttonface';
oPrmForm.lastname.style.borderRightColor = 'buttonface';
oPrmForm.lastname.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.lastname.style.borderLeftColor = 'tomato';
oPrmForm.lastname.style.borderTopColor = 'tomato';
oPrmForm.lastname.style.borderRightColor = 'tomato';
oPrmForm.lastname.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.evephone.value.length > 0) {
 var sevephonePhoneError = phoneIsValid(oPrmForm.evephone,'Preferred Phone');
if (sevephonePhoneError.length > 0) {
	sErrors = sErrors + sevephonePhoneError;
	bFieldGood = false;
}
}
else {
sErrors = sErrors + 'Preferred Phone missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.evephone.style.borderLeftColor = 'buttonface';
oPrmForm.evephone.style.borderTopColor = 'buttonface';
oPrmForm.evephone.style.borderRightColor = 'buttonface';
oPrmForm.evephone.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.evephone.style.borderLeftColor = 'tomato';
oPrmForm.evephone.style.borderTopColor = 'tomato';
oPrmForm.evephone.style.borderRightColor = 'tomato';
oPrmForm.evephone.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.email.value.length > 0) {
}
else {
sErrors = sErrors + 'Preferred E-mail missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.email.style.borderLeftColor = 'buttonface';
oPrmForm.email.style.borderTopColor = 'buttonface';
oPrmForm.email.style.borderRightColor = 'buttonface';
oPrmForm.email.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.email.style.borderLeftColor = 'tomato';
oPrmForm.email.style.borderTopColor = 'tomato';
oPrmForm.email.style.borderRightColor = 'tomato';
oPrmForm.email.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.confirmemail.value.length > 0) {
if (oPrmForm.email.value != oPrmForm.confirmemail.value){
sErrors = sErrors + 'Confirm E-mail does not match Preferred Email\n';
bFieldGood = false;
}
}
else {
sErrors = sErrors + 'Confirm E-mail missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.confirmemail.style.borderLeftColor = 'buttonface';
oPrmForm.confirmemail.style.borderTopColor = 'buttonface';
oPrmForm.confirmemail.style.borderRightColor = 'buttonface';
oPrmForm.confirmemail.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.confirmemail.style.borderLeftColor = 'tomato';
oPrmForm.confirmemail.style.borderTopColor = 'tomato';
oPrmForm.confirmemail.style.borderRightColor = 'tomato';
oPrmForm.confirmemail.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.contactmethod.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'Preferred Method of Contact missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.contactmethod.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.contactmethod.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.besttime.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'Best Time to Contact missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.besttime.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.besttime.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.address.value.length > 0) {
}
else {
sErrors = sErrors + 'Street Address missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.address.style.borderLeftColor = 'buttonface';
oPrmForm.address.style.borderTopColor = 'buttonface';
oPrmForm.address.style.borderRightColor = 'buttonface';
oPrmForm.address.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.address.style.borderLeftColor = 'tomato';
oPrmForm.address.style.borderTopColor = 'tomato';
oPrmForm.address.style.borderRightColor = 'tomato';
oPrmForm.address.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.city.value.length > 0) {
}
else {
sErrors = sErrors + 'City missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.city.style.borderLeftColor = 'buttonface';
oPrmForm.city.style.borderTopColor = 'buttonface';
oPrmForm.city.style.borderRightColor = 'buttonface';
oPrmForm.city.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.city.style.borderLeftColor = 'tomato';
oPrmForm.city.style.borderTopColor = 'tomato';
oPrmForm.city.style.borderRightColor = 'tomato';
oPrmForm.city.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.state.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'State missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.state.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.state.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.zip.value.length > 0) {
}
else {
sErrors = sErrors + 'Zip Code missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.zip.style.borderLeftColor = 'buttonface';
oPrmForm.zip.style.borderTopColor = 'buttonface';
oPrmForm.zip.style.borderRightColor = 'buttonface';
oPrmForm.zip.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.zip.style.borderLeftColor = 'tomato';
oPrmForm.zip.style.borderTopColor = 'tomato';
oPrmForm.zip.style.borderRightColor = 'tomato';
oPrmForm.zip.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.country.value.length > 0) {
}
else {
sErrors = sErrors + 'Country missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.country.style.borderLeftColor = 'buttonface';
oPrmForm.country.style.borderTopColor = 'buttonface';
oPrmForm.country.style.borderRightColor = 'buttonface';
oPrmForm.country.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.country.style.borderLeftColor = 'tomato';
oPrmForm.country.style.borderTopColor = 'tomato';
oPrmForm.country.style.borderRightColor = 'tomato';
oPrmForm.country.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.edulevel.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'What is your current level of education completed? missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.edulevel.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.edulevel.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.gradyear.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'High School Graduation Year missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.gradyear.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.gradyear.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.program.selectedIndex > 0 && oPrmForm.program.options[oPrmForm.program.selectedIndex].value != '0' && oPrmForm.program.options[oPrmForm.program.selectedIndex].value != '' ) {
/*
if (oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'M.A. in Education-Differentiated Instruction' || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'M.A. in Education-Early Childhood Education'
     || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'M.A. in Human Services-Criminal Justice Leadership' || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'M.A. in Human Services-Family Life Education'
     || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'Child Development' || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'Criminal Justice'
     || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'Family Life Education' || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'Public Safety & Security'
   )
{
	if (oPrmForm.workinginprogram.selectedIndex != 1)
	{
		sErrors = sErrors + 'You do not meet the program requirements at this time\n';
	}
}
if (oPrmForm.program.options[oPrmForm.program.selectedIndex].value.indexOf('Master') >= 0 || oPrmForm.program.options[oPrmForm.program.selectedIndex].value.indexOf('M.A.') >= 0
     || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'Human Resource Management' || oPrmForm.program.options[oPrmForm.program.selectedIndex].value == 'Sports Management'
)
{
	f = parseFloat(oPrmForm.gpa.value);
	if (f < 2.75)
	{
		sErrors = sErrors + 'You do not meet the program requirements at this time\n';
	}
	if (oPrmForm.edulevel.selectedIndex < 4) 
	{
		sErrors = sErrors + 'You do not meet the program requirements at this time\n';
	} 
}
else //BA degree-completion programs
{
f = parseFloat(oPrmForm.undergradcredits.value);
if (f < 36)
{
	sErrors = sErrors + 'You do not meet the admission requirements at this time\n';
}
}
}
*/
}
else {
sErrors = sErrors + 'What program are you interested in? missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.program.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.program.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.startdate.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'Anticipated start date missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.startdate.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.startdate.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.gpa.value.length > 0) {
   if ((oPrmForm.gpa.selectedIndex < 3) && ((oPrmForm.program.value == "M.A. in Organizational Management - Sports Management") || (oPrmForm.program.value == "M.A. in Organizational Management") || (oPrmForm.program.value == "M.A. in Organizational Management - Human Resource Management"))) {
	sErrors = sErrors + 'GPA must be 2.75 or higher to be qualified for graduate programs\n';
}
}
else {
sErrors = sErrors + 'What is your undergraduate or current college G.P.A. missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.gpa.style.borderLeftColor = 'buttonface';
oPrmForm.gpa.style.borderTopColor = 'buttonface';
oPrmForm.gpa.style.borderRightColor = 'buttonface';
oPrmForm.gpa.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.gpa.style.borderLeftColor = 'tomato';
oPrmForm.gpa.style.borderTopColor = 'tomato';
oPrmForm.gpa.style.borderRightColor = 'tomato';
oPrmForm.gpa.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
/*
if (oPrmForm.tenhours.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'Are you willing to spend at least 10 hours a week on your education? missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.tenhours.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.tenhours.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.orientation.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'Many of our on-line programs require a 2-3 day on-campus orientation.  Could you attend? missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.orientation.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.orientation.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.workinginprogram.selectedIndex > 0) {
}
else {
sErrors = sErrors + 'Are you currently working or volunteering in your program of choice? missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.workinginprogram.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.workinginprogram.style.backgroundColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.undergradcredits.value.length > 0) {
}
else {
sErrors = sErrors + 'How many transferable undergraduate credits do you have? missing\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.undergradcredits.style.borderLeftColor = 'buttonface';
oPrmForm.undergradcredits.style.borderTopColor = 'buttonface';
oPrmForm.undergradcredits.style.borderRightColor = 'buttonface';
oPrmForm.undergradcredits.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.undergradcredits.style.borderLeftColor = 'tomato';
oPrmForm.undergradcredits.style.borderTopColor = 'tomato';
oPrmForm.undergradcredits.style.borderRightColor = 'tomato';
oPrmForm.undergradcredits.style.borderBottomColor = 'tomato';
}
}
*/
bFieldGood = true;
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.questions.style.borderLeftColor = 'buttonface';
oPrmForm.questions.style.borderTopColor = 'buttonface';
oPrmForm.questions.style.borderRightColor = 'buttonface';
oPrmForm.questions.style.borderBottomColor = 'buttonface';
}
else {
oPrmForm.questions.style.borderLeftColor = 'tomato';
oPrmForm.questions.style.borderTopColor = 'tomato';
oPrmForm.questions.style.borderRightColor = 'tomato';
oPrmForm.questions.style.borderBottomColor = 'tomato';
}
}
bFieldGood = true;
if (oPrmForm.oktocontact.checked == true) {
}
else {
sErrors = sErrors + 'You do not currently meet the requirements\n';
bFieldGood = false;
}
if (bBrowserGood) {
if (bFieldGood) {
oPrmForm.oktocontact.style.backgroundColor = '#FFFFFF';
}
else {
oPrmForm.oktocontact.style.backgroundColor = 'tomato';
}
}
if (sErrors.length > 0) {
bReturn = false;
alert('The following errors occurred:\n' + sErrors);
}
return bReturn;
}
function FillProgram(obj)
{
	var seduLevel = obj.options[obj.selectedIndex].value;
	var oProgram = document.contactform.program;
	oProgram.options.length = 0;

	switch (seduLevel)
	{
		case '1-2 years completed':
			oProgram.options.length = 6;
			oProgram.options[0] = new Option();
			oProgram.options[0].value = '0';
			oProgram.options[0].text = 'Select one:';

			oProgram.options[1] = new Option();
			oProgram.options[1].value = 'B.A. Human Resource Management';
			oProgram.options[1].text = 'B.A. Human Resource Management';

			oProgram.options[2] = new Option();
			oProgram.options[2].value = 'B.A. Information Technology Management';
			oProgram.options[2].text = 'B.A. Information Technology Management';

			oProgram.options[3] = new Option();
			oProgram.options[3].value = 'B.A. Innovation & Marketing Management';
			oProgram.options[3].text = 'B.A. Innovation & Marketing Management';

			oProgram.options[4] = new Option();
			oProgram.options[4].value = 'B.A. Organizational Management & Communication';
			oProgram.options[4].text = 'B.A. Organizational Management & Communication';

			oProgram.options[5] = new Option();
			oProgram.options[5].value = 'B.A. Public Safety & Security';
			oProgram.options[5].text = 'B.A. Public Safety & Security';
			break;

		case 'Associates Degree':
			oProgram.options.length = 6;
			oProgram.options[0] = new Option();
			oProgram.options[0].value = '0';
			oProgram.options[0].text = 'Select one:';

			oProgram.options[1] = new Option();
			oProgram.options[1].value = 'B.A. Human Resource Management';
			oProgram.options[1].text = 'B.A. Human Resource Management';

			oProgram.options[2] = new Option();
			oProgram.options[2].value = 'B.A. Information Technology Management';
			oProgram.options[2].text = 'B.A. Information Technology Management';

			oProgram.options[3] = new Option();
			oProgram.options[3].value = 'B.A. Innovation & Marketing Management';
			oProgram.options[3].text = 'B.A. Innovation & Marketing Management';

			oProgram.options[4] = new Option();
			oProgram.options[4].value = 'B.A. Organizational Management & Communication';
			oProgram.options[4].text = 'B.A. Organizational Management & Communication';

			oProgram.options[5] = new Option();
			oProgram.options[5].value = 'B.A. Public Safety & Security';
			oProgram.options[5].text = 'B.A. Public Safety & Security';
			break;

		case 'Bachelors Degree (or equiv)':
			oProgram.options.length = 9;
			oProgram.options[0] = new Option();
			oProgram.options[0].value = '0';
			oProgram.options[0].text = 'Select one:';

			oProgram.options[1] = new Option();
			oProgram.options[1].value = 'B.A. Human Resource Management';
			oProgram.options[1].text = 'B.A. Human Resource Management';

			oProgram.options[2] = new Option();
			oProgram.options[2].value = 'B.A. Information Technology Management';
			oProgram.options[2].text = 'B.A. Information Technology Management';

			oProgram.options[3] = new Option();
			oProgram.options[3].value = 'B.A. Innovation & Marketing Management';
			oProgram.options[3].text = 'B.A. Innovation & Marketing Management';

			oProgram.options[4] = new Option();
			oProgram.options[4].value = 'B.A. Organizational Management & Communication';
			oProgram.options[4].text = 'B.A. Organizational Management & Communication';

			oProgram.options[5] = new Option();
			oProgram.options[5].value = 'B.A. Public Safety & Security';
			oProgram.options[5].text = 'B.A. Public Safety & Security';

			oProgram.options[6] = new Option();
			oProgram.options[6].value = 'M.A. in Organizational Management';
			oProgram.options[6].text = 'M.A. in Organizational Management';

			oProgram.options[7] = new Option();
			oProgram.options[7].value = 'M.A. in Organizational Management - Human Resource Management';
			oProgram.options[7].text = 'M.A. in Organizational Management - Human Resource Management';

			oProgram.options[8] = new Option();
			oProgram.options[8].value = 'M.A. in Organizational Management - Sports Management';
			oProgram.options[8].text = 'M.A. in Organizational Management - Sports Management';
			break;

		case 'Graduate/Masters degree':
			oProgram.options.length = 4;
			oProgram.options[0] = new Option();
			oProgram.options[0].value = '0';
			oProgram.options[0].text = 'Select one:';
			
			oProgram.options[1] = new Option();
			oProgram.options[1].value = 'M.A. in Organizational Management';
			oProgram.options[1].text = 'M.A. in Organizational Management';

			oProgram.options[2] = new Option();
			oProgram.options[2].value = 'M.A. in Organizational Management - Human Resource Management';
			oProgram.options[2].text = 'M.A. in Organizational Management - Human Resource Management';

			oProgram.options[3] = new Option();
			oProgram.options[3].value = 'M.A. in Organizational Management - Sports Management';
			oProgram.options[3].text = 'M.A. in Organizational Management - Sports Management';
			break;

	}
}
