﻿function saveStyle(style){
    var cookie = "styleSwitcher_gutsch-online=";
    cookie += style + ";";
    var exp = new Date();
    exp.setDate(exp.getTime() + (30 * 25 * 60 * 60 * 1000));
    cookie += "expires=" + exp.toGMTString() + ";";
    cookie += "path=/;";
    document.cookie = cookie;
}
function switchStyle(o){
    if(o.selectedIndex==-1)
        return false;
    var style = o.options[o.selectedIndex].value;
    
    var link = document.getElementById("styleLink");
    //alert(link.href);
    var path = "Custom/Components/FrontEnd/" + style + "/central.css";
    //alert(path);
    link.href = path;
    //alert(link.href);
    
    saveStyle(style)
    
    return false;
}