//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                                                                         
  function op_W(img_name,im_width,im_height)
  {  
    var wnd=null;
    if(parseInt(navigator.appVersion.substring(0,1)) >= 4)
      { 
       if(screen.width>=800)
       wnd=window.open("","image","width=" + (im_width+36) + ",height=" +(im_height+84)+",top=0,toolbar=0, scrollbars=1, resizable=1, location=0, status=0, directories=0, menubar=0");
       else
       wnd=window.open("","image","toolbar=0, scrollbars=1, resizable=1, location=0, status=0, directories=0, menubar=0");
      
       wnd.document.open();
       var tit="";
       var butn=""; 
       
     if(navigator.systemLanguage=="ru")
       {
        tit=("Галерея Свежего Ветра: картинка ");
        butn=" Закрыть ";
       }
     else
       {  
        tit=("Clear Wind's Galery: picture ");
        butn=" Close ";
       }
 
       wnd.document.writeln("<html>\n<title>" + tit+ im_width+" x "+im_height+ "</title>");
       wnd.document.writeln("<body bgcolor=black>");
       wnd.document.writeln("<center><img src='Pictures/"+img_name+".jpg'> ");
       wnd.document.writeln("<br><br><form><input type=button value="+butn+" style='background:black;color:white' \n onclick='window.close()' title="+butn+" onmouseover=\"this.style.color='gold'\" onmouseout=\"this.style.color='white'\">\n</form>");
       wnd.document.writeln("<br></center>");
       wnd.document.writeln("</body></html>");
     }

 else
     {
      wnd=window.open('Pictures/'+img_name+'.jpg','image','width=' +(im_width+18)+ ',height='+ (im_height+4)+ ',left=10,top=5,resizable=yes,scrollbars=yes,status=0');

        if (wnd != null) 
           {
            if (wnd.opener == null )
            wnd.opener = self;
            wnd.location.href='Pictures/'+img_name+'.jpg';
           }
     }

  }

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

