<!--
//*** 01_browser1.js
var BrT  = 0;
var DocX = null;
var Sty  = null;
var Lp   = null;
var Rp   = null;
BackC    = null;
Sw       = null;
Sh       = null;
Pt       = null;
Pl       = null;

//*** 00_browser1.js
function ErrHandle() {
    return true; 
}
////window.onerror = ErrHandle;
window.onerror = ErrHandle;


//*** 02_browser1.js
if (document.layers) { 
    BrT  = 1;
    DocX = "document.layers";
    Sty  = "";
    Lp   = "[";
    Rp   = "]";
    BackC = ".bgColor";
    Sw   = ".clip.width"
    Sh   = ".clip.height"
    Pt   = ".top"
    Pl   = ".left"
} else if (document.all) {
    BrT  = 2;
    DocX = "document.all";
    Sty  = ".style";
    Lp   = "[";
    Rp   = "]";
    BackC  = ".backgroundColor";
    Sw   = ".style.width"
    Sh   = ".style.height"
    Pt   = ".style.top"
    Pl   = ".style.left"
} else if (document.getElementById) {
    BrT  = 3;
    DocX = "document.getElementById";
    Sty  = ".style";
    Lp   = "(";
    Rp   = ")";
    BackC  = ".backgroundColor";
    Sw   = ".style.width"
    Sh   = ".style.height"
    Pt   = ".style.top"
    Pl   = ".style.left"
} else {
    BrT = 0;
}

//*** 03_browser1.js
var BrTvIE = 0;
if (BrT == 2) {
    var MSie = (navigator.appVersion.indexOf('MSIE'));
    if (MSie != -1) {
        BrTvIE = navigator.appVersion.substring(MSie+5,MSie+8);
    }
}

//*** 04_browser1.js
var StyleS = '<LINK REL="stylesheet" TYPE="text/css" HREF="';
var StyleE = '">';
var StylePath = new Array();
    StylePath[0] = "a_cjs/pages8.css"; 

    StylePath[1] = "a_cjs/back_i.css"; 
    StylePath[2] = "a_cjs/back_p.css"; 
    StylePath[3] = "a_cjs/back_w.css"; 

    StylePath[4] = "a_cjs/back_io.css";
    StylePath[5] = "a_cjs/back_po.css";

//*** 05_browser1.js
//========
if (screen.width < 1000) {
//if (screen.width > 1000) {
//========
    document.write(StyleS + StylePath[0] + StyleE);
} 

//*** 06_browser1.js
//if ((BrTvIE >= 5.0) || (BrT == 3)) {
//    if (Page == "index") {
//        document.write(StyleS + StylePath[1] + StyleE);
//    } else if (Page == "a_page") {
//        document.write(StyleS + StylePath[2] + StyleE);
//    } else if (Page == "winopen") {
//        document.write(StyleS + StylePath[3] + StyleE);
//    }
//} else {
//    if (Page == "index") {
//        document.write(StyleS + StylePath[4] + StyleE);
//    } else {
//        document.write(StyleS + StylePath[5] + StyleE);
//    }
//}
//na stare browsery se vykaslat
    if (Page == "index") {
        document.write(StyleS + StylePath[1] + StyleE);
    } else if (Page == "a_page") {
        document.write(StyleS + StylePath[2] + StyleE);
    } else if (Page == "winopen") {
        document.write(StyleS + StylePath[3] + StyleE);
    }


//-->
