// JavaScript Document function viewFoto(img){ foto1= new Image(); foto1.src=(img); Kontrola(img); } function Kontrola(img){ if((foto1.width!=0)&&(foto1.height!=0)){ ShowImage(img); } else{ fun="Kontrola('"+img+"')"; setTimeout(fun,20); } } function ShowImage(img){ sirka=foto1.width; vyska=foto1.height; par="width="+sirka+",height="+vyska+",menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no, left=100, top=100" win=window.open("","win"+new Date().getTime(),par); win.document.open(); win.document.write("Rieter CZ a.s."); win.document.write(""); win.document.write('
'); win.document.write("
"); /* win.document.write(""); */ win.document.write(""); } function OpenWin(par) { newwin = window.open(par,"new_window","resizable=yes,status=no,toolbar=no,location=no,menu=no,width=500, height=600"); newwin.moveTo(screen.availWidth/4, screen.availHeight/5); } // End -->