function popupPhoto(url, width, height) {
  wokno=window.open("", "_blank", "resizable=yes,scrollbars=yes,status=yes,width="+width+",height="+height);
  wokno.document.write("<html><head><title>Fotografie</title></head><body style=\"margin: 0px; padding: 0px\">");
  wokno.document.write("<img src=\""+url+"\" width="+width+" height="+height+" alt=\"Fotografie\" onClick=\"window.close();\">");
  wokno.document.write("</body></html>");
}

function descWrite(id) {
  document.write("<a onClick=\"descSwitch("+id+")\" class=\"descswitch\">Více &raquo;</a>");
}
function descSwitch(id) {
  desc=document.getElementById("desc"+id);
  if(desc) {
    if(desc.className=="descon") desc.className="descoff"; else desc.className="descon";
  }
}

