/************************FUNCTIONS*********************************/ function getId(o) { return document.getElementById(o); } function getTag(o) { return document.getElementsByTagName(o); } function getIdTag(o, p) { return document.getElementById(o).getElementsByTagName(p); } //Gets tag for object (FO) function getTagFO(o,t) { return o.getElementsByTagName(t); } /********Functions for courses**************************/ //Study modes function createStudyModeIcons(object) { var i= 0; var studyModes = object.innerHTML; studyModes = studyModes.split("; "); object.innerHTML = ""; for(i=0;i" + studyModes[i] + ""); break; case "OnCampus": studyModes[i] = ("" + studyModes[i] + ""); break; case "OnSite": studyModes[i] = ("" + studyModes[i] + ""); break; case "Fulltime": studyModes[i] = ("" + studyModes[i] + ""); break; case "PartTime(Day)": studyModes[i] = ("" + studyModes[i] + ""); break; case "PartTime(Night)": studyModes[i] = ("" + studyModes[i] + ""); break; case "OpenAccess": studyModes[i] = ("" + studyModes[i] + ""); break; case "Flexible": studyModes[i] = ("" + studyModes[i] + ""); break; } object.innerHTML += studyModes[i]; } } //Creates links for Campuses function addCampusLinks(object) { var loc_string = object.innerHTML.replace(/ /g, ""); switch(loc_string) { case "Warragul": object.href = "http://www.gippstafe.vic.edu.au/locations/warragul_campus"; break; case "Yallourn": object.href = "http://www.gippstafe.vic.edu.au/locations/yallourn_campus"; break; case "Morwell": object.href = "http://www.gippstafe.vic.edu.au/locations/morwell_campus"; break; case "Leongatha": object.href = "http://www.gippstafe.vic.edu.au/locations/leongatha_campus"; break; case "GETTCentre": object.href = "http://www.gippstafe.vic.edu.au/locations/gippsland_employment_and_transitional_training_gett_centre"; break; case "Chadstone": object.href = "http://www.gippstafe.vic.edu.au/locations/chadstone_campus_and_energy_training_centre"; break; case "GippslandEducationUnit": object.href = "http://www.gippstafe.vic.edu.au/locations/gippsland_education_precinct"; break; case "YouthDevelopmentUnit": object.href = "http://www.gippstafe.vic.edu.au/locations/youth_development_unit"; break; case "Online": object.href = "http://www.gippstafe.vic.edu.au/courses/online_courses"; break; } }