
//This function is to set the left navigation links on the teachers tour page, so that they navigate to the actual country for the tour
function SetLeftPhotoLinks() {

    var country = document.getElementById("ctl00_body_CountryNamePhoto").value;
    var photo = document.getElementById("ctl00_body_ctl01_rptSideNav_ctl03_hlSideNavItem");

        photo.href = photo.href.substring(0, photo.href.lastIndexOf("/")+1);
        photo.href = photo.href + country + ".aspx";
    return;
}



function SetLeftVideoLinks() {

    var country = document.getElementById("ctl00_body_CountryNameVideo").value;
    var video = document.getElementById("ctl00_body_ctl01_rptSideNav_ctl02_hlSideNavItem");

       video.href = video.href.substring(0, video.href.lastIndexOf("/")+1);
       video.href = video.href + country + ".aspx";
        
    return;
}


function SetLeftGuidesLinks() {

    var country = document.getElementById("ctl00_body_CountryNameGuides").value;
    var countryGuide = document.getElementById("ctl00_body_ctl01_rptSideNav_ctl01_hlSideNavItem");

    countryGuide.href = countryGuide.href.substring(0, countryGuide.href.lastIndexOf("/") + 1);
    countryGuide.href = countryGuide.href + country + "/printerfriendlyversion.aspx?p=y&h=y";

    return;
}



