function zobraz(name, file,wi,he)   {		
  	 theURL=file;
  	 W = parseInt(wi);
  	 H = parseInt(he);
  	 var okno = window.open(theURL, "detail" ,"width="+W+",height="+H+",left=0,top=0,scrollbars=1, resizable=yes");
  	 okno.resizeTo(W,H);
  	 okno.focus();
}