function zmen(id){
  document.getElementById('tab1').style.display='none';
  document.getElementById('tab2').style.display='none';
  document.getElementById('tab3').style.display='none';
  document.getElementById('tab4').style.display='none';
  document.getElementById('rad'+id).checked=true;
  document.getElementById('tab'+id).style.display='inline';
  return true;
}

Obrazek=0
function Otevri(kt,w,h){
  if (w==0) w=640;
  if (h==0) h=480;
  w = parseFloat(w) + 50;
  h = parseFloat(h) + 50;
  NW = window.open("",""+Obrazek+"","width="+w+",height="+h+",top=0,left=0,resizable=1,scrollbars=1,toolbar=0,location=0");
  NW.document.write("<html>");
  NW.document.write('<head><meta http-equiv="Content-Type" content="text/html; charset=windows-1250"><title>Detail</title><link type="text/css" rel="stylesheet" href="/css/golf.css"></head>');
  NW.document.write('<body text="black" leftmargin=0 topmargin=5><center><img src="/' + kt +'" border="1" alt="" onClick="window.close();">');
  NW.document.write('<br><br><form action=""><input type="submit" class="tlacitko" value="Zavřít náhled" onClick="window.close();" > </form></center> ');
  NW.document.write("</body></html>");
  Obrazek++;
}
