function showAlbum(e)
{
  try {
    window.open( jQuery(this).attr('href'),
               '',
               'left=50, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=600, height=600' );
  } catch( e ) { return true; }
  
  return false;
}

function initMouseOver()
{
  if( !document.body.getAttribute )
    return;
  
  var tds = jQuery('#albums_table td');
  
  for( var i=0; i<tds.length; ++i )
  {
    var anchs = jQuery('a', tds[i]);
    for( var j=0; j<anchs.length; ++j )
    {
      if( anchs[ j ].className != 'admin_tool' )
        jQuery(anchs[j]).click(showAlbum);
    }
  }
}

window.addEvent( window, 'load', initMouseOver, false );
