/* add to bookmarks - used by photo.l.net */
function addbookmark (linkObj, addUrl, addTitle)
{

  if (document.all && !window.opera)
  {
    window.external.AddFavorite(addUrl,addTitle);
    return false;
  }
  else if (window.opera && window.print)
  {
    linkObj.title = addTitle;
    return true;
  }
  else if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function'))
  {
    if (window.confirm('Add this page as a new panel?'))
    {
      window.sidebar.addPanel(addTitle,addUrl,'');
      return false;
    }
  }
  window.alert('Press CTRL-D,\nand this page will be added to favourites.');
  return false;
}

/* used by poutnik, check the following one if used anywgere..*/
function openWindu(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
