function getElementByID(elid){
	if(document.all)
		return document.all(elid);
	else
		return document.getElementById(elid);
}

keeplist = "";

dotlist = "";
function setupDots(){
	allTags = document.getElementsByTagName("div");
	for (i=0; i<allTags.length; i++){
		if(allTags[i].id.indexOf("dot") != -1)
			dotlist+=allTags[i].id+",";
	}
	dotlist = dotlist.substring(0,dotlist.length-1);
}


function populate(){
	regExp = "";
	outArray = new Array();
	outCount = 0;

	statesC = document.selectform.states.value;
	citiesC = document.selectform.cities.value;
	schoolsC = document.selectform.schools.value;
	progsC = document.selectform.programs.value;

	document.selectform.selectedIndex=0;
	document.selectform.cities.value=0;
	document.selectform.schools.value=0;
	progsi = 0;

	for(i=document.selectform.states.length; 1 < i; i--){
		document.selectform.states[i] = null;
	}
	for(i=document.selectform.cities.length; 1 < i; i--){
		document.selectform.cities[i] = null;
	}
	for(i=document.selectform.schools.length; 1 < i; i--){
		document.selectform.schools[i] = null;
	}
	for(i=document.selectform.programs.length; 1 < i; i--){
		document.selectform.programs[i] = null;
	}
	i1=1;
	i2=1;
	i3=1;
	i4=1;
	showdots = "";
	keeplist="";
	for(locs in lar){
		if(doTest(statesC+","+citiesC+","+schoolsC,lar[locs])){
			output = lar[locs].split(",");
			add = true;
			if(keeplist.indexOf("["+output[0]+"]") != -1)
					add = false;
			if(add){
				document.selectform.states[i1] = new Option(output[0],output[0]);
				keeplist += "["+output[0]+"]";
				if(unescape(output[0]) == unescape(statesC))
					document.selectform.states.selectedIndex = i1;
				i1++;
			}

			add = true;
			if(keeplist.indexOf("["+output[1]+"]") != -1)
					add = false;
			if(add){
				document.selectform.cities[i2] = new Option(output[1],output[1]);
				keeplist += "["+output[1]+"]";
				if(unescape(output[1]) == unescape(citiesC))
					document.selectform.cities.selectedIndex = i2;
				i2++;
			}
			for(progr in programs){
				add = true;
				progtemp = programs[progr].split(",");
				if(keeplist.indexOf("["+progtemp[2]+"]") != -1 || progtemp[3].indexOf("["+output[3]+"]") == -1)
					add = false;
				if(add){
					document.selectform.programs[i4] = new Option(progtemp[2],progtemp[2]);
					keeplist += "["+progtemp[2]+"]";
					i4++;
					if(unescape(progtemp[2]) == unescape(progsC))
						progsi = i4;
					
				}
			}
			add = true;
			if(keeplist.indexOf("["+output[2]+"]") != -1)
					add = false;
			if(add){
				document.selectform.schools[i3] = new Option(output[2],output[2]);
				keeplist += "["+output[2]+"]";
				if(unescape(output[2]) == unescape(schoolsC))
					document.selectform.schools.selectedIndex = i3;
				i3++;
			}
			showdots += "[dot"+output[3]+"]";

		}
	}
	dotlista = dotlist.split(",");
	for(eachdot in dotlista){
		if(showdots.indexOf("["+dotlista[eachdot]+"]") != -1)
			document.getElementById(dotlista[eachdot]).style.display="block";
		else
			document.getElementById(dotlista[eachdot]).style.display="none";
	}
	if(progsi!=0)
	document.selectform.programs.selectedIndex = progsi-1
	else
	document.selectform.programs.selectedIndex = 0
}

function doTest(arraystring,comparestring){
	ars = arraystring.split(",");
	crs = comparestring.split(",");
	if(ars[0]=="All")
		ars[0] = crs[0];
	if(ars[1]=="All")
		ars[1] = crs[1];
	if(ars[2]=="All")
		ars[2] = crs[2];
	return ars[0]==crs[0] && ars[1]==crs[1] && ars[2]==crs[2];
}

function renderDots(){
	for(ddots in lar){
		curdot = lar[ddots].split(",");
		regexp = new RegExp("'","ig");
		document.write("<div class=\"dot\" id=\"dot"+curdot[3]+"\" title=\""+curdot[2]+" ("+curdot[1]+", "+curdot[0]+") " +curdot[3]+ "\" onclick=\"document.selectform.schools.value=\'"+curdot[2].replace(regexp,"\\'")+"\'; document.selectform.states.value=\'"+curdot[0].replace(regexp,"\\'")+"\';document.selectform.cities.value=\'"+curdot[1].replace(regexp,"\\'")+"\';populate();\"></div>")
	}
}

function getLocation(){
	statesC = document.selectform.states.value;
	citiesC = document.selectform.cities.value;
	schoolsC = document.selectform.schools.value;
	programsC = document.selectform.programs.value;
	geto = "";
	if(schoolsC!="All"){
		switch(schoolsC){
			case "FMU":
				geto = "http://fmu.edu-search.com/online/";
			break;
			case "Everest College Online":
				geto = "http://everestonline.edu-search.com/online/";
			break;
			case "Everest College":
				geto = "http://everestcollege.edu-search.com/";
			break;
			case "Bryman College":
				geto = "http://bryman.edu-search.com/";
			break;
			case "Bryman Institute":
				geto = "http://bryman.edu-search.com/institute/";
			break;
			case "WyoTech":
				geto = "http://wyotech.edu-search.com/";
			break;
			case "National Institute of Technology":
				geto = "http://nit.edu-search.com/";
			break;
			case "Parks College":
				geto = "http://parkscollege.edu-search.com/";
			break;
			case "Blair College":
				geto = "http://blaircollege.edu-search.com/";
			break;
			case "Florida Metropolitan University":
				geto = "http://fmu.edu-search.com/";
			break;
			case "National School of Technology":
				geto = "http://nst.edu-search.com/";
			break;
			case "Olympia Career Training Institute":
				geto = "http://olympiacti.edu-search.com/";
			break;
			case "Olympia College":
				geto = "http://olympiacollege.edu-search.com/";
			break;
			case "Las Vegas College":
				geto = "http://lasvegascollege.edu-search.com/";
			break;
			case "Rochester Business Institute":
				geto = "http://rochesterbusiness.edu-search.com/";
			break;
			case "Ashmead College":
				geto = "http://ashmead.edu-search.com/";
			break;
			case "Western Business College":
				geto = "http://westernbusiness.edu-search.com/";
			break;
			case "Duff's Business Institute":
				geto = "http://duffs.edu-search.com/";
			break;
			case "Mountain West College":
				geto = "http://mountainwest.edu-search.com/";
			break;
			case "Kee Business College":
				geto = "http://kee.edu-search.com/";
			break;
			case "Georgia Medical Institute":
				geto = "http://gmi.edu-search.com/";
			break;
			/*
			case "Springfield College":
				geto = "http://springfieldcollegemo.edu-search.com/";
			break; */
			case "Everest College Online":
				geto = "http://everestonline.edu-search.com/";
			break;
		}
	}
	else{
		if(citiesC != "All" && statesC != "All"){
				if(citiesC.toLowerCase() != "any")
					geto = "states."+statesC.toLowerCase()+"."+citiesC.toLowerCase()+".php";
				else
					geto = "states."+statesC.toLowerCase()+".php";
		}
		if(citiesC == "All" && statesC != "All"){
			geto = "states."+statesC.toLowerCase()+".php";
		}
		if(citiesC != "All" && statesC == "All"){
			if(document.selectform.states.length > 2){
				alert("There are multiple states for the city you chose.  Please select a state.")
				document.selectform.states.focus();
				return;
			}
			else{
				if(citiesC.toLowerCase() != "any")
					geto = "states."+document.selectform.states[1].value+"."+citiesC+".php";
				else
					geto = "states."+document.selectform.states[1].value+".php";
			}
		}
		if(citiesC == "All" && statesC == "All"){
			if(programsC != "All"){
				for(i=0; i<programs.length; i++){
					progout = programs[i].split(",")
					if(progout[2] == programsC)
						geto = "programs."+progout[0].toLowerCase()+"."+progout[1].toLowerCase()+"."+progout[2].toLowerCase()+".php";
				}
			}
			else{
				geto = "states.php"
			}
		}
	}
	if(geto.indexOf("http://") == -1){
		doReplace = "abcdefghijklmnopqrstuvwxyz.";
		geto = geto.toLowerCase();
		gohere = "";
		for(i=0; geto.length > i; i++){
			curletter = geto.substring(i,i+1);
			keep=false;
			for(j=0; j<doReplace.length; j++){
				if(doReplace.substring(j,j+1) == curletter){
					keep=true;
				}
			}
			if(keep)
				gohere += curletter;
		}
		geto=gohere;
		regex = /\.\./ig;
		location.href=geto.replace(regex,".");
	}
	else{
		geto = "showschool.php?url="+geto;
		location.href=geto
	}
}

lar = new Array(
	"Online,Any,FMU,08A",
	"Online,Any,Everest College Online,08A",
	"Arizona,Phoenix,Everest College,06B",
	"California,Alhambra,Bryman College,03G",
	"California,Anaheim,Bryman College,03D",
	"California,City of Industry,Bryman College,03N",
	"California,Fremont,WyoTech,20D",
	"California,Gardena,Bryman College,03K",
	"California,Hayward,Bryman College,03L",
	"California,Long Beach,National Institute of Technology,13B",
	"California,Oakland,WyoTech,20C",
	"California,Rancho Cucamonga,Everest College,06A",
	"California,Reseda,Bryman College,03E",
	"California,Sacramento,WyoTech,20E",
	"California,San Bernardino,Bryman College,03H",
	"California,San Francisco,Bryman College,03I",
	"California,San Jose,Bryman College,03J",
	"California,Torrance,Bryman College,03C",
	"California,West LA,Bryman College,03M",
	"California,Wilshire,Bryman College,03F",
	"Florida,Brandon,Florida Metropolitan University,07E",
	"Florida,Fort Lauderdale,National School of Technology,14D",
	"Florida,Hialeah,National School of Technology,14B",
	"Florida,Lakeland,Florida Metropolitan University,07F",
	"Florida,Jacksonville,Florida Metropolitan University,07B",
	"Florida,Kendall,National School of Technology,14C",
	"Florida,Melbourne,Florida Metropolitan University,07A",
	"Florida,Miami,National School of Technology,14A",
	"Florida,Orlando,Florida Metropolitan University,07G",
	"Florida,Orlando,Florida Metropolitan University,07H",
	"Florida,Orange Park,Florida Metropolitan University,07J",
	"Florida,Pompano Beach,Florida Metropolitan University,07I",
	"Florida,Tampa,Florida Metropolitan University,07C",
	"Georgia,Atlanta,Georgia Medical Institute,09B",
	"Georgia,Dekalb GMI,Georgia Medical Institute,09A",
	"Georgia,Jonesboro,Georgia Medical Institute,09C",
	"Georgia,Marietta,Georgia Medical Institute,09D",
	"Georgia,Norcross,Georgia Medical Institute,09E",
	"Illinois,Burr Ridge,Olympia College,16C",
	"Illinois,Chicago,Olympia College,16B",
	"Illinois,Skokie,Olympia College,16A",
	"Indiana,Merrillville,Olympia College,16D",
	"Louisiana,New Orleans,Bryman College,03P",
	"Massachusetts,Bedford,WyoTech,20A",
	"Massachusetts,Boston,WyoTech,20B",
	"Massachusetts,Brighton,Bryman Institute,04A",
	"Massachusetts,Chelsea,Bryman Institute,04B",
	"Michigan,Dearborn,National Institute of Technology,13E",
	"Michigan,Detroit,National Institute of Technology,13K",
	"Michigan,Grand Rapids,Olympia Career Training Institute,15A",
	"Michigan,Kalamazoo,Olympia Career Training Institute,15B",
	"Michigan,Southfield,National Institute of Technology,13D",
	"Minnisota,Egan,Bryman Institute,04C",
	"Nevada,Henderson,Las Vegas College,11B",
	"Nevada,Las Vegas,Las Vegas College,11A",
	"New York,Rochester,Rochester Business Institute,18A",
	"Ohio,Columbus,Bryman Institute,04D",
	"Oregon,Portland,Ashmead College,01E",
	"Texas,Arlington,Everest College,06D",
	"Texas,Austin,National Institute of Technology,13J",
	"Texas,Bissonnet,National Institute of Technology,13L",
	"Texas,Dallas,Everest College,06C",
	"Texas,Fort Worth,Everest College,06E",
	"Texas,Galleria,National Institute of Technology,13F",
	"Texas,Greenspoint,National Institute of Technology,13H",
	"Texas,Houston Hobby,National Institute of Technology,13I",
	"Texas,San Antonio,National Institute of Technology,13G",
	"Virginia,Arlington,Parks College,17C",
	"Virginia,Chesapeake Bay,Kee Business College,10B",
	"Virginia,Newport News,Kee Business College,10A",
	"Washington,Everett,Ashmead College,01D",
	"Washington,Everett,Bryman College,03Q",
	"Washington,Federal Way,Bryman College,03R",
	"Washington,Fife (Tacoma),Ashmead College,01B",
	"Washington,Lynnwood,Bryman College,03B",
	"Washington,Port Orchard,Bryman College,03S",
	"Washington,Renton,Bryman College,03A",
	"Washington,Seattle,Ashmead College,01A",
	"Washington,Tacoma,Bryman College,03T",
	"Washington,Vancouver,Ashmead College,01C",
	"West Virginia,Cross Lanes,National Institute of Technology,13C"
);

/*
	"Colorado,Thornton,Parks College,17B",
	"Pennsylvania,Pittsburgh,Duff's Business Institute,05A",
	"Colorado,Colorado Springs,Blair College,02A",
	"Colorado,Aurora,Parks College,17A",
	"Virginia,Mclean/Tysons Corner,Parks College,17D",
	"Missouri,Springfield,Springfield College,21A",
	"Washington,Vancouver,Western Business College,19B",
	"Oregon,Portland,Western Business College,19A",
*/


programs = new Array(
	"Business,Finance,Accounting,[02A][05A][06B][06A][07E][07B][07F][07A][07G][07D][07I][07H][07C][08A][11A][12A][13D][18A][21A][19A][19B]",
	"Business,Finance,Accounting Applications,[06B][17A][17B][18A]",
	"Business,Finance,Bookkeeping,[11A][19A][19B]",
	"Business,Finance,Business Accounting,[02A][12A][18A]",
	"Business,Business Administration,Administrative Assistant,[02A][03N][03O][03M][11A][19A][19B]",
	"Business,Business Administration,Administrative Information Processing,[18A]",
	"Business,Business Administration,Administrative Medical Assistant,[11B][11A][19A][19B]",
	"Business,Business Administration,Administrative Secretary,[05A]",
	"Business,Business Administration,Business Management/Administrative Assistant,[03N][03O][03M]",
	"Business,Business Administration,Business Administration,[02A][05A][06D][06C][O6?][06B][07E][07E][07B][07F][07A][07G][07J][07D][07I][07H][07C][08A][11B][11A][12A][17C][17A][17D][17B][18A][21A][19A]",
	"Business,Business Administration,Business Management,[08A][18A]",
	"Business,Business Administration,Business Operations,[03G]",
	"Business,Business Administration,Business,[06A][07J]",
	"Business,Business Administration,Career Access Program,[05A]",
	"Business,Business Administration,Office Administration,[06B][12A]",
	"Business,Business Administration,Executive Assistant,[19A][19B]",
	"Business,Business Administration,Receptionist,[19A][19B]",
	"Business,Business Administration,Human Resources,[08A]",
	"Business,,International Business,[07I][08A][08A]",
	"Business,,Management,[07E][07F][07G][07D][07H][07C][07I]",
	"Business,Management,Management/Marketing,[07E][07F][07G][07D][07H][07C]",
	"Business,Management,Office Management and Technology,[06B]",
	"Business,Marketing,Marketing,[07E][07F][07G][07D][07H][07C][07I][08A]",
	"Business,Marketing,Management/Marketing,[07E][07F][07G][07D][07H][07C]",
	"Business,Business Technology,Office Technologies,[07F]",
	"Business,Business Technology,Office Management and Technology,[06B]",
	"Legal,,Court Reporting,[11A]",
	"Legal,,Criminal Investigations,[07J][07H][07C]",
	"Legal,,Criminal Justice,[02A][05A][06D][06C][06B][06A][07E][07B][07F][07A][07G][07J][07D][07I][07H][07C][08A][11B][11A][12A][17C][17A][17D][17B]",
	"Legal,,Homeland Security,[02A][03B][03H][03I][03J][06B][07E][07D][07I][07H][07C][08A][10B][11A][13C][13D][17C][17A][17B]",
	"Legal,Legal Assistant/Paralegal,Legal Administrative Secretary,[05A]",
	"Legal,Legal Assistant/Paralegal,Legal Administrative Assistant,[06B][11A][19A][19B]",
	"Legal,Legal Assistant/Paralegal,Legal Assistant/Paralegal,[02A][07F][07G][07I][07H][07C][05A][06B][06A][07E][07B][07F][07A][07G][07D][08A][11A][12A][17C][17A][17B][18A][21A][19A][19B][06B]",
	"Medical,Massage Therapy,Advanced Massage Therapist,[14D][14B][14C][14A]",
	"Medical,Massage Therapy,Massage Therapy,[03G][03D][03K][03E][03H][03I][03J][03C][03M][03N][04A][04B][04C][07F][07C][09B][09A][09C][09D][09E][10B][10A][13C][13E][13D][14B][14C][14A][15A][15B][16C][16D][16A][17A][03O][13B]",
	"Medical,Massage Therapy,Professional Licensing - Massage Therapy,[01D][01B][01E][01A][01C]",
	"Medical,Massage Therapy,Clinical and Sports Massage Specialist,[01C]",
	"Medical,Medical Billing and Coding,Medical Billing,[03Q][03S][03T]",
	"Medical,Medical Billing and Coding,Medical Coding Specialist,[14D]",
	"Medical,Medical Billing and Coding,Medical Insurance Billing/Coding,[02A][03G][03D][03K][03L][03N][03B][03P][03O][03I][03J][03M][03F][04D][04C][05A][06D][06C][06B][07E][07B][07F][07G][07D][07H][07C][09B][09A][09C][09D][10B][10A][11A][12A][13L][13E][13K][13F][13H][13I][13D][14B][14C][14A][15A][15B][16A][17A][17B][21A][19A][19B]",
	"Medical,Nursing,Certified Nurses Aide,[15B]",
	"Medical,Nursing,Vocational Nursing,[03D]",
	"Medical,Nursing,Practical Nurse,[15A][16D]",
	"Medical,Medical Assisting,Medical Assisting,[02A][03G][03D][03Q][03K][03L][03B][03P][03S][03A][03E][03H][03I][03J][03T][03M][03F][04A][04B][04D][04C][06D][06C][O6?][07E][07B][07F][07A][07G][07J][07D][07I][07H][07C][09B][09A][09C][09D][09E][10B][10A][12A][13J][13L][13E][13K][13F][13H][13I][13B][13G][13D][14D][14B][14C][14A][15A][15B][16C][16B][16A][17A][17B][18A][21A][03N][03O][05A][11B][11A][16D][19A][19B]",
	"Medical,Medical Assisting,Medical Transcriptionist,[14C][21A]",
	"Medical,Medical Office Management,Health Care Administration,[07F][07A][07G][07D][07H][07C]",
	"Medical,Medical Office Management,Medical Administrative Assistant,[02A][03G][03D][03K][03L][03B][03P][03A][03E][03I][03J][03F][03L][04A][09B][09C][09D][09E][10B][10A][13J][13G][13D][15A][15B][16C][16B][16D][17A][17B][19A][19B]",
	"Medical,Medical Office Management,Medical Administrative Secretary,[05A]",
	"Medical,Medical Office Management,Medical Business and Clinical Specialist,[13C]",
	"Medical,Medical Office Management,Medical Clinical Assistant,[03H]",
	"Medical,Medical Office Management,Medical Office Assistant,[21A]",
	"Medical,Medical Office Management,Medical Office Management,[03N][03O][03H][03M]",
	"Medical,Medical Office Management,Patient Care Technician,[05A][09B][09C][09D][14A]",
	"Medical,Medical Office Management,Assisted Living Administrator,[02A][07E][07A][07G][07I][07H][07C][14C]",
	"Medical,Wellness and Sports Medicine,Spa and Aromatherapy,[01B][01A][01C]",
	"Medical,Wellness and Sports Medicine,Fitness Trainer,[01A][01C]",
	"Medical,Wellness and Sports Medicine,Professional Licensing and Spa and Aromatherapy,[01D][01E]",
	"Medical,Wellness and Sports Medicine,Clinical and Sports Massage Specialist,[01C]",
	"Medical,Wellness and Sports Medicine,Advanced Massage Therapist,[14D][14B][14C][14A]",
	"Medical,Wellness and Sports Medicine,Massage Therapy,[03G][03D][03K][03E][03H][03I][03J][03C][03M][03N][04A][04B][04C][07F][07C][09B][09A][09C][09D][09E][10B][10A][13C][13E][13D][14B][14C][14A][15A][15B][16C][16D][16A][17A][03O][13B]",
	"Medical,Wellness and Sports Medicine,Professional Licensing - Massage Therapy,[01D][01B][01E][01A][01C]",
	"Medical,,Medical Transcription,[14C][21A]",
	"Medical,,Pharmacy Technician,[03G][03D][03Q][03P][03S][03A][03I][03J][03T][03C][03F][04B][05A][07E][07B][07F][07A][07C][09B][09C][09D][13J][13L][13C][13H][13I][13G][14B][14C][14A][15A][15B][16B][19A]",
	"Medical,,Dental Assistant,[03G][03D][03Q][03K][03B][03P][03S][03A][03E][03I][03J][03T][03M][03F][04A][09E][10B][13H][21A][03N][03O][09C][15A][15B]",
	"Medical,Specialization,Medical Laboratory Assistant/Phlebotomist,[03N][03A]",
	"Medical,Specialization,Cardiovascular Technologist,[14B][14C]",
	"Medical,Specialization,Dialysis Technician,[03K][09A]",
	"Medical,Specialization,Respiratory Care,[09A]",
	"Medical,Specialization,Scoping Technology,[11A]",
	"Medical,Specialization,Surgical Technologist,[03L][03J][07E][12A][14B][14C][14A][17B]",
	"Medical,Specialization,Surgical Technology,[09D]",
	"Medical,Specialization,X-Ray Technician Limited Permit,[03D][03N][03O][03I][03M]",
	"Computer Technology,Applications,Advanced Microcomputer Applications,[19A]",
	"Computer Technology,Applications,Microcomputer Applications,[19B]",
	"Computer Technology,Applications,Computerized Business Applications,[13G]",
	"Computer Technology,Applications,Computerized Office Applications,[03H][10B][10A]",
	"Computer Technology,Office Technology,Automated Office Applications,[19A][19B]",
	"Computer Technology,Office Technology,Computer Office Technologies and Applications,[07E][07F][11A]",
	"Computer Technology,Office Technology,Computerized Business Applications,[13G]",
	"Computer Technology,Office Technology,Computerized Office Applications,[03H][10B][10A]",
	"Computer Technology,Computer,Computer Information Science,[07E][07B][07F][07A][07G][07D][07I][07H][07C][08A][21A][21A]",
	"Computer Technology,Computer,Computer Information Systems,[02A][12A][21A]",
	"Computer Technology,Computer,Computer Operator,[05A]",
	"Computer Technology,Computer,Computer Technology,[13D][16D][17A][17B]",
	"Computer Technology,Networking,Network Administrator,[02A][07F][08A][17B]",
	"Computer Technology,Networking,Network System Support,[13F][13G]",
	"Computer Technology,,Programming,[08A][18A][18A]",
	"Computer Technology,,Web Administrator,[06B][17A]",
	"Computer Technology,,Web Development,[17A]",
	"Career Training,Aircraft Maintenance,Aeronautical Maintenace Technology,[20A][20B]",
	"Career Training,Aircraft Maintenance,Aircraft Mechanic,[20C]",
	"Career Training,Aircraft Maintenance,Aviation Maintenance Technician,[20A]",
	"Career Training,Automotive Maintenance,Automotive Technology,[20D][20E]",
	"Career Training,Automotive Maintenance,Chassis Fabrication and High Performance Engineering,[20E]",
	"Career Training,Automotive Maintenance,Motorsports,[20D]",
	"Career Training,Automotive Maintenance,Advanced Diagnostics,[20D]",
	"Electronics,,Electronics Computer Technology,[13D]",
	"Electronics,,Electronics Computer and Communications Technology,[13J][13C][13G]",
	"Electronics,,Electronics and Computer Engineering Technology,[13F]",
	"Career Training,Electrical,Electrical Technology,[13B]",
	"Career Training,Electrical,Electrician,[13B]",
	"Career Training,Plumbing,Plumbing,[13B][20D]",
	"Career Training,Plumbing,Plumbing Technology,[13B][20D]",
	"Career Training,Service Industry,Travel/Hospitality,[19A]",
	"Career Training,Service Industry,Travel/Tourism,[12A][19A]",
	"Career Training,Service Industry,Hospitality Management,[07I][19A]",
	"Career Training,HVAC,HVAC,[13J][13B][13G][20D]",
	"Career Training,Industrial Instrumentation and Control Systems,Industrial Instrumentation and Control Systems,[13B]",
	"Career Training,Intensive English,Intensive English,[07E][07H]",
	"Career Training,Operations Specialist,Operations Specialist,[19A][19B]",
	"Art,,Film and Video,[07A][07G]",
	"Art,,Commercial Art,[07G][07C]",
	"Art,,Web Design,[08A][17A]"
);

if(document.all)
	document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"ie.css\">")
