﻿function change_location(PageID,CountryISO,SiteRoot)
{
    window.location = SiteRoot + CountryISO + "/" + PageID.toString() + "/";
}

function changeCountry(SiteRoot)
{
    var mID = document.getElementById("selectCountry").options[document.getElementById("selectCountry").selectedIndex].value;
    if(mID != "")
        window.location = SiteRoot + "admin/menus/" + mID + "/";
}

function changeCountry2(SiteRoot)
{
    var mID = document.getElementById("selectCountry").options[document.getElementById("selectCountry").selectedIndex].value;
    if(mID != "")
        window.location = SiteRoot + "admin/labels/" + mID + "/";
}