<!--
faculties = new Array("Faculty of Arts","Faculty of Commerce","Faculty of Education","Faculty of Health Studies","Faculty of Science and Agriculture");
levels = new Array("Undergraduate", "Honours", "Postgraduate");

 
careers = new Array("All","Accounting","Acting, drama, theatre","Adult education","Advertising","Aged services management, gerontology","Agriculture, horticulture, agronomy, agribusiness","Ambulance studies, paramedic","Animal sciences, animal production","Jewellery","Arts - English, history, art history","Audiovisual archiving","Biotechnology","Broadcasting, TV and radio","Business","Clinical practice, clinical nursing","Clinical sciences","Communication, media","Complementary medicine","Computer games","Computer science","Correctional management","Courses in the Faculty of Arts","Courses in the Faculty of Business","Courses in the Faculty of Education","Courses in the Faculty of Science","Dentistry and Oral Health","Early childhood education","Education","Emergency management","English, TESOL, languages other than English (LOTE)","Environmental science","Environmental science, environmental management","Equine studies","Exercise science, physical education","Finance","Food science","Forced migration","Forensics","GIS and remote sensing","Genetic counselling","Graphic design","Health science","Health services management, emergency management","Heritage and culture","Human resource management","Human resources, training and development","Indigenous health","Industrial relations, employment services","Information technology","Journalism","Justice studies, criminology","Law, ethics","Leisure and health studies","Library and information management","Management","Marketing","Marketing, strategic marketing","Mathematics","Medical imaging, radiography","Medical imaging, ultrasound, radiography","Medical sciences","Medicine entry","Mental health nursing","Multimedia, digital design","Nuclear medicine technology","Nursing, midwifery","Nutrition, dietetics","Occupational therapy","Orthopaedic manipulative therapy","Parks and recreation","Pathology","Pharmacy, pharmaceutical science","Photography","Physiotherapy","Podiatry","Policing","Policing, investigations and specialisations","Primary school teaching","Project management","Psychology","Public relations","Public safety","Remote sensing, GIS, spatial science","Respiratory science, asthma education","Rural management","Science","Secondary school teaching","Social policy and planning","Social science","Social work, welfare studies","Special education, gifted education","Speech pathology, speech and hearing sciences","Sports coaching, leisure fitness industries","TV and video production","Teacher librarianship","Teaching","Theology","Tourism, ecotourism, recreation","University teaching and learning","Veterinary Science","Vocational education and training","Web authorship and design","Winemaking and viticulture","Fine Arts","Animation","Design for Theatre and TV");
ugcareersall = new Array(0,22,23,24,25,1,2,3,4,6,7,8,105,9,10,12,13,14,15,16,17,18,19,20,26,106,27,28,29,32,33,34,35,104,36,38,41,44,45,47,49,50,51,53,54,55,56,58,60,61,62,64,65,66,67,68,70,71,72,73,74,75,76,78,80,81,83,85,86,87,90,92,93,94,96,97,98,100,101,102,103);
ugcareersoff = new Array(0,22,23,24,25,1,3,6,7,8,10,12,14,15,17,18,19,20,106,27,28,29,32,33,35,104,36,38,41,44,45,47,49,51,53,54,55,56,58,60,61,66,67,70,71,72,76,80,83,85,86,90,93,96,97,98,101,102,103);
ugcareerson = new Array(0,22,23,24,25,1,2,4,6,7,8,105,9,10,12,13,14,15,16,17,19,20,26,106,27,28,32,33,34,35,36,38,41,44,45,47,49,50,51,55,56,58,60,61,62,64,65,66,67,68,70,71,72,73,74,75,76,78,80,81,83,85,86,87,90,92,93,94,96,97,98,100,102,103);
honcareersall = new Array(0,22,23,24,25,1,2,4,8,105,9,10,12,13,14,17,19,20,106,27,28,31,33,34,104,36,41,49,50,51,60,61,64,66,68,72,73,74,75,78,80,81,86,90,92,93,94,96,97,102);
honcareersoff = new Array(0,22,23,25,1,2,8,105,10,12,14,20,106,31,33,104,36,41,49,51,60,61,66,80,86,90,97);
honcareerson = new Array(0,22,23,24,25,2,4,8,105,9,10,12,13,14,17,19,20,106,27,28,31,33,34,104,36,41,49,50,51,60,61,64,66,68,72,73,74,75,78,80,81,86,92,93,94,96,97,102);
pgcareersall = new Array(0,22,23,24,25,1,2,3,5,6,7,8,105,9,10,11,13,14,15,17,20,21,106,28,30,32,34,35,104,36,37,39,40,42,43,46,47,48,49,50,51,52,54,55,57,58,59,61,63,66,68,69,70,71,72,77,79,80,82,84,85,86,88,89,90,91,95,96,97,98,99,101);
pgcareersoff = new Array(0,22,23,24,25,1,2,3,5,6,7,8,105,9,10,11,13,14,15,17,20,21,106,28,30,32,35,104,36,37,39,40,42,43,46,47,48,49,50,51,52,54,55,57,58,59,61,63,66,68,69,70,71,72,77,79,80,82,84,85,86,88,89,90,91,95,96,97,98,99,101);
pgcareerson = new Array(0,22,23,24,25,1,2,6,7,105,9,10,13,14,17,20,106,28,32,34,35,104,36,42,49,50,54,55,58,80,85,86,89,90,96,97);


function domenu2() {
var i;
var selopt;
var opt;
if(!document.cf){ return false; }
i = document.cf.top.selectedIndex;
selopt = document.cf.top.options[i].text;
document.cf.two.options[1] = new Option("Honours");
if (selopt == "Research") {
        for (i=0; i < document.cf.two.options.length; i++) {
                opt = "";
                if (i < faculties.length) {
                        opt = faculties[i]; }
                document.cf.two.options[i] = new Option(opt);
                }
         }
else {
        for (i=0; i < document.cf.two.options.length; i++) {
                opt = "";
                if (i < levels.length) {
                        opt = levels[i]; }
                document.cf.two.options[i] = new Option(opt);
                }
        }
if (selopt == "International") {
        document.cf.two.options[1] = new Option(""); }
document.cf.two.selectedIndex = 0;

domenu3();

}

function domenu3() {
var i;
var j;
var selmode;
var selopt;
var opt;
i = document.cf.two.selectedIndex;
selopt = document.cf.two.options[i].text
i = document.cf.top.selectedIndex;
selmode = document.cf.top.options[i].text;

if (selopt== "Undergraduate") {
        for (i=0; i < document.cf.three.options.length; i++) {
                opt = "";
                if ((selmode == "Either On Campus or Distance") && (i < ugcareersall.length)) {
                        j = ugcareersall[i];
                        opt = careers[j]; }
                if ((selmode == "Distance Education") &&(i < ugcareersoff.length)) {
                        j = ugcareersoff[i];
                        opt = careers[j]; }
                if ((selmode == "On Campus") && (i < ugcareerson.length)) {
                        j = ugcareerson[i];
                        opt = careers[j]; }
                if ((selmode == "International") && (i == 0)) {
                        opt = "All"; }
                document.cf.three.options[i] = new Option(opt);
                }
        }
if (selopt == "Honours") {
        for (i=0; i < document.cf.three.options.length; i++) {
                opt = "";
                if ((selmode == "Either On Campus or Distance") && (i < honcareersall.length)) {
                        j = honcareersall[i];
                        opt = careers[j]; }
                if ((selmode == "Distance Education") &&(i < honcareersoff.length)) {
                        j = honcareersoff[i];
                        opt = careers[j]; }
                if ((selmode == "On Campus") && (i < honcareerson.length)) {
                        j = honcareerson[i];
                        opt = careers[j]; }
                if ((selmode == "International") && (i == 0)) {
                        opt = "None"; }
                document.cf.three.options[i] = new Option(opt);
                }
        }
if (selopt == "Postgraduate") {
        for (i=0; i < document.cf.three.options.length; i++) {
                opt = "";
                if ((selmode == "Either On Campus or Distance") && (i < pgcareersall.length)) {
                        j = pgcareersall[i];
                        opt = careers[j]; }
                if ((selmode == "Distance Education") &&(i < pgcareersoff.length)) {
                        j = pgcareersoff[i];
                        opt = careers[j]; }
                if ((selmode == "On Campus") && (i < pgcareerson.length)) {
                        j = pgcareerson[i];
                        opt = careers[j]; }
                if ((selmode == "International") && (i == 0)) {
                        opt = "All"; }
                document.cf.three.options[i] = new Option(opt);
                }
        }
if (selmode == "Research") {
        for (i=0; i < document.cf.three.options.length; i++) {
                opt = "";
                if (i == 0) {
                        opt = "All"; }
                document.cf.three.options[i] = new Option(opt);
                }
        }
document.cf.three.selectedIndex = 0;
}

function form3select() {
var i;
var selopt;
i = document.cf.three.selectedIndex;
selopt = document.cf.three.options[i].text;if (selopt == "") {
        alert("you must select something");
        }
}

//-->