// JavaScript Document verzia 0.1
function pic(cesta) {
      
     obr=window.open("","okno","toolbar=no width=640 height=480 resizeable=yes");
      
     with (obr.document){
   //open();
    writeln("<html><title>Obrázok</title><body leftmargin=0 topmargin=0><img src="+cesta+"></body></html>");
    
   // close();
    focus();
    }
}
function pic2(cesta) {
      
     obr=window.open("","okno","toolbar=no width=480 height=640 resizeable=yes");
      
     with (obr.document){
   //open();
    writeln("<html><title>Obrázok</title><body leftmargin=0 topmargin=0><img src="+cesta+"></body></html>");
    
   // close();
    focus();
    }
}

