function checkSearchSchoolForm(){ var d = document.search_school_form ; if ( d.search_zip.value == '' ) { alert('Zip Required!'); d.search_zip.focus(); return false; } } function doDegreeTypeChange(the_degree_type_value){ var d = document.search_school_form ; d.search_categoryID.length = 0 ; if ( the_degree_type_value == '' ) { //re-popluate d.search_categoryID.options[0] = new Option('Select', ''); //All them to select ALL CATEGORIES as per Carol d.search_categoryID.options[1] = new Option('All Categories', ''); d.search_categoryID.options[2] = new Option('Arts and Human Services', '14'); d.search_categoryID.options[3] = new Option('Business and Finance', '2'); d.search_categoryID.options[4] = new Option('Cooking and Culinary', '19'); d.search_categoryID.options[5] = new Option('Education and Teaching', '13'); d.search_categoryID.options[6] = new Option('Health and Medicine', '9'); d.search_categoryID.options[7] = new Option('Human Resources and Administration', '18'); d.search_categoryID.options[8] = new Option('IT and Computer Science', '7'); d.search_categoryID.options[9] = new Option('Legal and Paralegal', '15'); d.search_categoryID.options[10] = new Option('Liberal Arts and Communications', '11'); d.search_categoryID.options[11] = new Option('Science and Technology', '17'); d.search_categoryID.options[12] = new Option('Social Sciences and Law', '16'); d.search_categoryID.options[13] = new Option('Trade and Vocational', '12'); } if ( the_degree_type_value == 'Masters Degree' ) { //re-popluate d.search_categoryID.options[0] = new Option('Select', ''); //All them to select ALL CATEGORIES as per Carol d.search_categoryID.options[1] = new Option('All Categories', ''); d.search_categoryID.options[2] = new Option('Arts and Human Services', '14'); d.search_categoryID.options[3] = new Option('Business and Finance', '2'); d.search_categoryID.options[4] = new Option('Education and Teaching', '13'); d.search_categoryID.options[5] = new Option('Health and Medicine', '9'); d.search_categoryID.options[6] = new Option('Human Resources and Administration', '18'); d.search_categoryID.options[7] = new Option('IT and Computer Science', '7'); d.search_categoryID.options[8] = new Option('Legal and Paralegal', '15'); d.search_categoryID.options[9] = new Option('Liberal Arts and Communications', '11'); d.search_categoryID.options[10] = new Option('Science and Technology', '17'); d.search_categoryID.options[11] = new Option('Social Sciences and Law', '16'); d.search_categoryID.options[12] = new Option('Trade and Vocational', '12'); } if ( the_degree_type_value == 'Bachelors Degree' ) { //re-popluate d.search_categoryID.options[0] = new Option('Select', ''); //All them to select ALL CATEGORIES as per Carol d.search_categoryID.options[1] = new Option('All Categories', ''); d.search_categoryID.options[2] = new Option('Arts and Human Services', '14'); d.search_categoryID.options[3] = new Option('Business and Finance', '2'); d.search_categoryID.options[4] = new Option('Cooking and Culinary', '19'); d.search_categoryID.options[5] = new Option('Education and Teaching', '13'); d.search_categoryID.options[6] = new Option('Health and Medicine', '9'); d.search_categoryID.options[7] = new Option('Human Resources and Administration', '18'); d.search_categoryID.options[8] = new Option('IT and Computer Science', '7'); d.search_categoryID.options[9] = new Option('Legal and Paralegal', '15'); d.search_categoryID.options[10] = new Option('Liberal Arts and Communications', '11'); d.search_categoryID.options[11] = new Option('Science and Technology', '17'); d.search_categoryID.options[12] = new Option('Social Sciences and Law', '16'); d.search_categoryID.options[13] = new Option('Trade and Vocational', '12'); } if ( the_degree_type_value == 'Associates Degree' ) { //re-popluate d.search_categoryID.options[0] = new Option('Select', ''); //All them to select ALL CATEGORIES as per Carol d.search_categoryID.options[1] = new Option('All Categories', ''); d.search_categoryID.options[2] = new Option('Arts and Human Services', '14'); d.search_categoryID.options[3] = new Option('Business and Finance', '2'); d.search_categoryID.options[4] = new Option('Education and Teaching', '13'); d.search_categoryID.options[5] = new Option('Health and Medicine', '9'); d.search_categoryID.options[6] = new Option('Human Resources and Administration', '18'); d.search_categoryID.options[7] = new Option('IT and Computer Science', '7'); d.search_categoryID.options[8] = new Option('Legal and Paralegal', '15'); d.search_categoryID.options[9] = new Option('Liberal Arts and Communications', '11'); d.search_categoryID.options[10] = new Option('Science and Technology', '17'); d.search_categoryID.options[11] = new Option('Social Sciences and Law', '16'); d.search_categoryID.options[12] = new Option('Trade and Vocational', '12'); } if ( the_degree_type_value == 'Doctorate Degree' ) { //re-popluate d.search_categoryID.options[0] = new Option('Select', ''); //All them to select ALL CATEGORIES as per Carol d.search_categoryID.options[1] = new Option('All Categories', ''); d.search_categoryID.options[2] = new Option('Arts and Human Services', '14'); d.search_categoryID.options[3] = new Option('Business and Finance', '2'); d.search_categoryID.options[4] = new Option('Education and Teaching', '13'); d.search_categoryID.options[5] = new Option('Health and Medicine', '9'); d.search_categoryID.options[6] = new Option('Human Resources and Administration', '18'); d.search_categoryID.options[7] = new Option('IT and Computer Science', '7'); d.search_categoryID.options[8] = new Option('Legal and Paralegal', '15'); d.search_categoryID.options[9] = new Option('Liberal Arts and Communications', '11'); d.search_categoryID.options[10] = new Option('Science and Technology', '17'); d.search_categoryID.options[11] = new Option('Social Sciences and Law', '16'); d.search_categoryID.options[12] = new Option('Trade and Vocational', '12'); } if ( the_degree_type_value == 'Diploma Degree' ) { //re-popluate d.search_categoryID.options[0] = new Option('Select', ''); //All them to select ALL CATEGORIES as per Carol d.search_categoryID.options[1] = new Option('All Categories', ''); d.search_categoryID.options[2] = new Option('Arts and Human Services', '14'); d.search_categoryID.options[3] = new Option('Business and Finance', '2'); d.search_categoryID.options[4] = new Option('Education and Teaching', '13'); d.search_categoryID.options[5] = new Option('Health and Medicine', '9'); d.search_categoryID.options[6] = new Option('IT and Computer Science', '7'); d.search_categoryID.options[7] = new Option('Legal and Paralegal', '15'); d.search_categoryID.options[8] = new Option('Liberal Arts and Communications', '11'); d.search_categoryID.options[9] = new Option('Science and Technology', '17'); d.search_categoryID.options[10] = new Option('Social Sciences and Law', '16'); d.search_categoryID.options[11] = new Option('Trade and Vocational', '12'); } } function clearForm(){ var d = document.search_school_form ; d.search_degree_type.value = '' ; d.search_categoryID.value = '' ; d.search_categoryID.length = 0 ; } function doThankYouPop(){ window.open('thankyou.html','_blank','width=360,height=300,status=1,resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no'); } function doExitPop(){ window.open('exit_pop.cfm','_blank','width=380,height=345,status=1,resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no'); }