﻿function chgFnt(x) 
{
    var bodyID = document.getElementById("pagebody");
    setCookie(x);
    switch (x) 
    {
        case "1":
            bodyID.style.fontSize = "0.625em";
            break;
        case "2":
            bodyID.style.fontSize = "0.66em";
            break;
        case "3":
            bodyID.style.fontSize = "0.72em";
            break;
    }
    setColorOnClick(x);
    return false
}

function setColorOnClick(x) {
    var lb1 = document.getElementById("lb1");
    var lb2 = document.getElementById("lb2");
    var lb3 = document.getElementById("lb3");
    switch (x) {
        case "1":
            lb1.style.color = "#a13032";
            lb2.style.color = "#bbbbbb";
            lb3.style.color = "#bbbbbb";
            break;
        case "2":
            lb1.style.color = "#bbbbbb";
            lb2.style.color = "#a13032";
            lb3.style.color = "#bbbbbb";
            break;
        case "3":
            lb1.style.color = "#bbbbbb";
            lb2.style.color = "#bbbbbb";
            lb3.style.color = "#a13032";
            break;
    }    
}

//expiracia cookie o 10 minut po nacitani stranky, ak do 10 minut neotvori dalsiu stranku, cookie expiruje 
function setCookie(x) {
    var nextyear = new Date();
    nextyear.setMinutes(nextyear.getMinutes() + 10);
    document.cookie = "sizeText=" + x + "; expires=" + nextyear.toGMTString() + "; path=/";
}

//body onload
function setFontSize() {
    var allCookies = document.cookie;
    var pos = allCookies.indexOf("sizeText=");
    if (pos != -1) {
        var start = pos + 9;
        var end = allCookies.indexOf(";", start);
        if (end == -1) end = allCookies.length;
        var value = allCookies.substring(start, end);
        //window.alert(value);
        chgFnt(value);
    }
}

function addToFavorites(url, description) {
    //window.alert('aaa');
    if (navigator.userAgent.indexOf("Opera") > -1) {
        alert("Stlačením CTRL+T pridáte túto stranku k obľúbeným.");
    }
    else if (document.all) {
    window.external.AddFavorite(url, description);
    }
    else {
        //window.alert('aaa');
        window.sidebar.addPanel(description, url, ''); 
    }
    return (false);
}

function PrintContent(con) {

    var printContent = document.getElementById(con);
    var WinPrint = window.open('', '', 'left=100,top=0,toolbar=0,scrollbars=0,status=0,width=800,height=600');
    WinPrint.document.write("www.expocenter.sk " + Date());
    WinPrint.document.write('<html><head><title>Expo Center a.s.</title>');
    WinPrint.document.write('</head><body style="font-family: Arial, Helvetica, sans-serif;font-size:10px;">');
    WinPrint.document.write(printContent.innerHTML);
    WinPrint.document.write('</body></html>'); 
    WinPrint.document.close();
    WinPrint.focus();
    WinPrint.print();
    WinPrint.close();
    printContent.innerHTML = old;
}
