/**
 * JS Utils
 *
 * @package pantan_webcams
 **/

function addBookmark(title, url)
{
  if (document.all)
  {
    window.external.AddFavorite(url, title);
  }
  else
  if (window.sidebar)
  {
    window.sidebar.addPanel(title, url, "");
  }
}

function popup(sUrl, iWidth, iHeight)
{
  var iLeft = Math.round((screen.availWidth - iWidth) / 2);
  var iTop = Math.round((screen.availHeight - iHeight) / 2);

  hWin = window.open(sUrl,"fenster", "width=" + iWidth + ",height=" + iHeight +
                    ",left=" + iLeft + ",top=" + iTop + ",resizable=yes, scrollbars=yes");
  hWin.focus();
}

function popup_setup()
{
	window.focus();
}