/*zobrazovanie fotiek*/

function openWin(winHeight, winWidth, picSrc)
{
  newWin = window.open('', '', 'height='+ winHeight + ',width='+ winWidth + 'toolbars=no, scrollbars=yes' );
  newWin.document.write("<head><title>Kliknutím na fotku sa okno zavrie </title></head>");
  newWin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
  newWin.document.write("<table cellpadding='0' cellspacing='0' border='0'><tr>");
  newWin.document.write("<td><a onclick='window.close()'><img src="+ picSrc +"></a></td></tr></table></body>");
}

/* koniec */
