// JavaScript Document
function mySetProgram(dropdown) {
    var elem = document.getElementById("dnn_ctr63396_FormMaster_ctl__20110201T145508");
    if (dropdown.selectedIndex == 0) {
        mySetDate(0);
    }    
    if (dropdown.selectedIndex == 1) {
        mySetDate(1);
    }
    if (dropdown.selectedIndex == 2) {
        mySetDate(2);
    }
    if (dropdown.selectedIndex == 3) {
        mySetDate(3);
    }
    if (dropdown.selectedIndex == 4) {
        mySetDate(4);
    }
    if (dropdown.selectedIndex == 5) {
        mySetDate(5);
    }
}


function mySetDate(strProgram) {
    switch (strProgram) {
        //case 0:
            //alert("here");
            //myHideDate2("3", "4", "5", "6", "7", "8", "9", "10");
            //myHideLocation2("0", "5");
            //break;
        case 0:
            //alert("here");
            //myHideDate2("3", "4", "5", "6", "7", "8", "9", "10");
            myHideLocation("20", "24", "28", "29", "30", "34");
            break;
        case 1:
            //alert("here");
            //myHideDate("2");
            myHideLocation("8", "31");
            break;
        case 2:
            //myHideDate("3");
            myHideLocation("6", "32");
            break;
        case 3:
            //myHideDate("4");
            myHideLocation("0","34");
            break;
        case 4:
            //myHideDate("6");
            myHideLocation("0","34");
            break;
    }
}

function myHideProgramme() {
    var t = arguments.length;
    var myProgramme = new Array();
    //myProgramme[0] = "SEO Business Workshop";
    myProgramme[0] = "Home Ownership Seminar";
    myProgramme[1] = "First Steps to Business Level 2";
    myProgramme[2] = "Cert in Money Management Level 3";
    myProgramme[3] = "Cert in Small Business Management Level 4";
    myProgramme[4] = "Cert in Applied Business Growth Level 5";
    var elemProgramme = document.getElementById("dnn_ctr63396_FormMaster_ctl__20110201T145508");
    elemProgramme.length = 0;
    var i = 0;
    for (i = 0; i < 5; i++) {
        //var a = arguments[i];
        var elOptNew = document.createElement('option');
        elOptNew.text = myProgramme[i];
        elOptNew.value = myProgramme[i];
        elemProgramme.options.add(elOptNew);
    }
    if (elemProgramme.selectedIndex == 0) {
        myHideLocation("20", "24", "28", "29", "30", "34");
    }
    elemProgramme.setAttribute('onChange', "mySetProgram(this)");
    elemProgramme.onchange = function() {
        //alert("here");
        mySetProgram(this);
    };
}

function myHideLocation() {
    var t = arguments.length;
    var myLocation = new Array();
    myLocation[0] = "Auckland - August 2011";
    myLocation[1] = "Pakuranga - 10th March 2011";
    myLocation[2] = "Newmarket - 7th March 2011";
    myLocation[3] = "Manukau - 31st March 2011";
    myLocation[4] = "Otahuhu - 9th March 2011";
    myLocation[5] = "Takapuna - 10th March 2011";
    myLocation[6] = "Auckland - July 2011";
    myLocation[7] = "Henderson - 30th March 2011";
    myLocation[8] = "Auckland - August 2011";
    myLocation[9] = "Henderson - 13th April 2011";
    myLocation[10] = "Newmarket - 14th April 2011";
    myLocation[11] = "Pakuranga - 2nd May 2011";
    myLocation[12] = "Henderson - 3rd May 2011";
    myLocation[13] = "Newmarket - 3rd May 2011";
    myLocation[14] = "Takapuna - 4th May 2011";

    myLocation[15] = "East Auckland - Pakuranga Arts Centre - 21st May 2011";
    myLocation[16] = "South Auckland - School of Business - 16th April 2011";
    myLocation[17] = "West Auckland - Tui Glen Centre - 26th March 2011";
    myLocation[18] = "West Auckland - Tui Glen Centre - 30th April 2011";
    myLocation[19] = "North Shore - Raeburn House - 14th May 2011";
    myLocation[20] = "New Market - 10 September";
    //myLocation[20] = "North Shore - 30 July 2011";
    //myLocation[21] = "West Auckland - 20th August 2011";
    myLocation[22] = "North Shore - Mary Thomas Centre - 12th February 2011";
    myLocation[23] = "North Shore - School of Business or Mary Thomas Centre (TBC) - 9th April 2011";
    myLocation[24] = "North Shore - 24 September 2011 ";
    myLocation[25] = "West Auckland - Massey Community House - 2nd April 2011";
    myLocation[26] = "West Auckland - Ranui Action Project Group - 7th May 2011";

    myLocation[27] = "West Auckland - Tui Glen Centre - 25th June 2011";


    myLocation[28] = "West Auckland - 15 Oct 2011";
    myLocation[29] = "North Shore - 12 Nov 2011";
    myLocation[30] = "West Auckland - 10 Dec 2011";

    myLocation[31] = "Auckland - March 2012";

    myLocation[32] = "Auckland - March 2012";

    myLocation[33] = "Auckland - March 2012";

    myLocation[34] = "Auckland - March 2012";



    var elemLocation = document.getElementById("dnn_ctr63396_FormMaster_ctl__20110201T145537");
    elemLocation.length = 0;
    var i = 0;
    for (i = 0; i < t; i++) {
        var a = arguments[i];
        var elOptNew = document.createElement('option');
        elOptNew.text = myLocation[a];
        elOptNew.value = myLocation[a];
        elemLocation.options.add(elOptNew);
    }
}
