/*
    Всплывающее меню (версия 1.4)
    -----------------------------------
    MSIE 5.5+, Gecko, Opera 7+
    -----------------------------------
    Скрипт написан: Миша Спларов (mailto:splurov@gmail.com)
    -----------------------------------
*/
show=false;
showSub=false;
showSub1=false;
showSub2=false;
showSub3=false;
timeout=false;
timeout2=false;
timeout3=false;
timeout4=false;
timeout5=false;

function addBookmark(url, title)
{
  if (!url) url = location.href;
  if (!title) title = document.title;

  //Gecko
  if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) window.sidebar.addPanel (title, url, "");
  //IE4+
  else if (typeof window.external == "object") window.external.AddFavorite(url, title);
  //Opera7+
  else if (window.opera && document.createElement)
  {
    var a = document.createElement('A');
    if (!a) return false; //IF Opera 6
    a.setAttribute('rel','sidebar');
    a.setAttribute('href',url);
    a.setAttribute('title',title);
    a.click();
  }
  else return false;

  return true;
}

function run_movie(arg)
{
document.write(arg);
} 
