function display(myimage) {
html = "<HTML><HEAD>" 
+ "<style type=text/css>body{font-size:12px;color: #333333;font-family: sans-serif;line-height:12px;margin:0;padding:0;}</style>"
+ "</HEAD><BODY> <CENTER>" 
+ "<a href='javascript:window.close();'><IMG SRC='" + myimage + "' BORDER=0 NAME=image " 
+ "onload='window.resizeTo(document.image.width+20,document.image.height+50)' /></a>"
+ "</CENTER>" 
+ "</BODY></HTML>";
popup=
window.open
('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
popup.document.open();
popup.document.write(html);
popup.document.close()
};


var zobrazena="popis";

function zalozky(polozka, obj ){

    if( polozka != zobrazena ){
        if(document.getElementById(zobrazena)){
            document.getElementById(zobrazena).style.display= "none";
            document.getElementById(zobrazena+"_1").className="";
        }
        document.getElementById(polozka).style.display= "block";
        obj.className="selected";
        zobrazena=polozka;
    }
}

function loc( link ){

    window.location.href = '/inshop/' + link;
    return false;

}

var zobrazena = "dopor";
function zalozmain(polozka, obj ){
    if( polozka != zobrazena ){ 
        document.getElementById(zobrazena).style.display= "none";
        document.getElementById(polozka).style.display= "block";
        obj.className="aktivni";
        document.getElementById(zobrazena+"_1").className="";
        zobrazena = polozka;
    }
}
