prepare = function() 
{ 
  j = 0;
  divs = document.getElementsByTagName('div')

  while( div = divs[j++] )
  {
    if( div.className == 'fotos' )
    {
      for (i=0; i< div.childNodes.length; i++) 
      {
        node = div.childNodes[i];

        if( node.nodeName == 'IMG')
        {
          node.alt = 'Увеличить картинку';

          node.onclick = function() 
          { 
            re     = new RegExp("([0-9]+)","i");
            result = re.exec( this.src );

            if (result == null) return ;

            num = RegExp.$1;

            window.open('/en/pw.php?id='+num,'SB1','width=580,height=513', 'status=yes', 'toolbar=yes', 'menubar=yes', 'resizable=yes');
            return false;
          }
           
        }
      }
    }

  }
}

window.onload = function() { prepare(); };

