function change(idcko)
{
    objekt = document.getElementById('p'+idcko);
    if (objekt.style.display == 'block'){
        objekt.style.display = 'none'
    }
    else{
        objekt.style.display = 'block';
    }
}

function quick_help(text)
{
    zoom_console = window.open("","help","left=120, top=120, width=200,height=200,scrollbars=auto");
    zoom_console.document.write("<HTML><TITLE>IHAHA nápověda</TITLE><BODY style=\"margin:0;padding:0;margin-top:50px;background-image: url(images/obchod/napis.gif);background-repeat: no-repeat\" bgcolor=#ffffff>");
    zoom_console.document.write('<div style="font-family: verdana;font-size:10px;background: white; padding: 5px" align="center">'+ text +'</div>');
    zoom_console.document.write("</BODY></HTML>");
    zoom_console.document.close();
    return true;
}


function box_click(ele)
{
    v = document.getElementById( ele );
    if (v.style.display == 'block'){
        v.style.display = 'none';
    } else {
        v.style.display = 'block';
    }
}



function image_zoom(id, zoomw, zoomh, zoompath, zoomtitle ){
    zoom_console = window.open("",id,"left=120, top=120, width="+zoomw+",height="+zoomh+",scrollbars=auto");
    zoom_console.document.write("<HTML><TITLE>IHAHA</TITLE><BODY style=\"margin:0;padding:0;margin-top:50px;background-image: url(images/obchod/napis.gif);background-repeat: no-repeat\" bgcolor=#ffffff>");
    zoom_console.document.write('<div align="center"><img onclick="window.close()" style="border: 10px solid #D95B1D;cursor:hand" src="'+zoompath+'"  alt="   IHAHA   '+"\n    " + zoomtitle  + "\n \n" + '    click = close" border="0"></div>');
    zoom_console.document.write("</BODY></HTML>");
    zoom_console.document.close();
    return true;
}

function image_zoom2(id, zoomw, zoomh, zoompath, zoomtitle ){
    zoom_console = window.open("",id,"left=120, top=120, width="+zoomw+",height="+zoomh+",scrollbars=auto");
    zoom_console.document.write("<HTML><TITLE>IHAHA</TITLE><BODY style=\"margin:0;padding:0;margin-top:50px;background-image: url(images/bazar/napis.gif);background-repeat: no-repeat\" bgcolor=#ffffff>");
    zoom_console.document.write('<div align="center"><img onclick="window.close()" style="border: 10px solid #D95B1D;cursor:hand" src="'+zoompath+'"  alt="   IHAHA   '+"\n    " + zoomtitle  + "\n \n" + '    click = close" border="0"></div>');
    zoom_console.document.write("</BODY></HTML>");
    zoom_console.document.close();
    return true;
}

