function getCookie(strCookie){
    var matches = document.cookie.match(new RegExp((strCookie+"=(.*?)(;|$)")));
    return (matches==null) ? false : matches[1];
}
 
function setBgBild(strBgBild){
    document.cookie = "bgBild="+escape(strBgBild);
    changeBgBild();
}
 
function changeBgBild(){
    var bgBild = getCookie("bgBild");
    if (!bgBild)
        bgBild = "../../02.%20GKD%20new/ovrigt/Pixelstudio_1.jpg"; // den bild som ska visas om man inte har valt något
 
    document.body.style.backgroundImage = "url("+unescape(bgBild)+")";
}
 
changeBgBild();
