      function ShowProg(name,w,h)
     {
      hd=(screen.availHeight)/h;
      wd=(screen.availWidth)/w;
      if (hd>wd) {
         w=w*wd; h=h*wd;
         if(screen.availWidth>1024){w=1024;h=768;}
      } else {
         w=w*hd; h=h*hd;
      }   
      
		
   
      var okno = "scrollbars=1,fullscreen=1,status=0,toolbar=0,top=0,left=0,width=" + w + ",height=" + h + ",resizable=1,menubar=0";
      var st1="";
      st1=name.substring(0,name.indexOf("small")) + "large/"+ name.substring (name.indexOf("small")+6,name.length-4)+".JPG";
      newWin = window.open(st1, "_blank",okno)
//newWin = window.showModelessDialog(st1,null,"dialogHeight: "+h+"px; dialogWidth: "+w+"px; dialogTop: px; dialogLeft: px; edge: Raised; center: Yes; help: No; resizable: No; scroll: No; status: No;");
      newWin.document.write("<html><head><title>Valdo.lv</title> <link href='../black.css' rel='stylesheet' type='text/css'>  </head><body bgcolor='#FFFFFF' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>")
      newWin.document.write("<p align='center'><a><img border='1' src=" + st1 + " align='center' style=\"cursor:hand\"  onclick='window.close()'></a></p> </body> </html>")

     }

