// JavaScript Document

function show(theURL) { //v3.0 Daniel Robert Przybylowski


  okno = window.open("blank.htm","PicWin","left=0,top=0,height=300,width=300,scrollbars=no,resizable=yes,status=no");

  okno.document.open();
  okno.document.write('<HTML><HEAD><TITLE></TITLE>');

  okno.document.write('<script language="javascript" type="text/javascript">');
  okno.document.write('function resfoc() { ');
  okno.document.write('var FH = window.document.fotka.height;');
  okno.document.write('var FW = window.document.fotka.width;');
  okno.document.write('window.resizeTo(FW+30,FH+100);');
  okno.document.write('window.focus(); }');


  okno.document.write('</script>');

  okno.document.write('</HEAD>');
  okno.document.write('<BODY bgcolor="#000099">');

  okno.document.write('<img src="'+theURL+'" name="fotka" onload="resfoc()">');

  okno.document.write('<br><a href=\'javascript: close();\'><font color="#FFFFFF">Close window</font></a>');


  okno.document.write('</BODY></HTML>');
  okno.document.close();

  okno.focus();
}


