function showToolbar()
{

  menu = new Menu();

  // AddItem (id, text, hint, location, alternativeLocation, target);
  // AddSubItem (idParent, text, hint, location, target);
  menu.addItem("product", "Продукты/Услуги", "Продукты/Услуги",  null, null, null);
  menu.addItem("chartsnews", "Графики/Котировки", "Графики/Котировки",  null, null, null);
  menu.addItem("registr", "Тестовый доступ", "Тестовый доступ",  null, null, null);
  menu.addItem("download", "Download/Support", "Download/Support",  null, null, null);
  menu.addItem("finworld", "Мир финансов", "Мир финансов", null, null, null);
  menu.addItem("about",    "О нас&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;",
   "О нас&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", null, null, null);

  menu.addSubItem("product", "Главная", "Главная",  "../Product/main.html", "center");
  menu.addSubItem("product", "Описание QuoteSpeed", "Описание QuoteSpeed",  "../Product/opisqs.html", "center");
  menu.addSubItem("product", "Описание HotLiner", "Описание HotLiner",  "../Product/opisqsf.html", "center");
  menu.addSubItem("product", "Обзор данных", "Обзор данных",  "../Product/istochn.html", "center");
  menu.addSubItem("product", "Ценовое предложение", "Ценовое предложение",  "../Product/price.html", "center");
  menu.addSubItem("product", "Дополнительные сервисы", "Дополнительные сервисы",  "../Product/dopserv.html", "center");

  menu.addSubItem("chartsnews", "Графики", "Графики",  "http://194.125.227.182:81/Graph/Graph.html", "window");
  menu.addSubItem("chartsnews", "Котировки", "Котировки",  "http://194.125.227.182:81/Kotirovk/Kotirovk.html", "window");
	
  menu.addSubItem("registr", "Тестовый доступ Quote Speed", "Тестовый доступ QuoteSpeed",  "../Register/testqs.html", "center");
  menu.addSubItem("registr", "Рассылка на e-mail / SMS", "Рассылка на e-mail / SMS","http://194.125.227.182:81/Alerts/index.html","window");
 
  menu.addSubItem("download", "Download", "Download",  "../Download/", "window");
  menu.addSubItem("download", "Инсталляция QuoteSpeed", "Инсталляция QuoteSpeed",  "../Support/instqs.html", "center");
  menu.addSubItem("download", "Настройки MetaStock и TradeStation", "Настройки MetaStock и TradeStation",  "../Support/systqs.html", "center");

  menu.addSubItem("finworld", "Введение", "Введение", "../Financial/intro.html", "center");
  menu.addSubItem("finworld", "Рынки", "Рынки", "../Financial/markets.html", "center");
  menu.addSubItem("finworld", "Forex", "Forex", "../Financial/forex.html", "center");
  menu.addSubItem("finworld", "Фьючерсы", "Фьючерсы", "../Financial/fuchers.html", "center");
  menu.addSubItem("finworld", "Опционы", "Опционы", "../Financial/options.html", "center");
  menu.addSubItem("finworld", "Акции", "Акции", "../Financial/aktions.html", "center");
  menu.addSubItem("finworld", "Брокеры", "Брокеры", "../Financial/brokers.html", "center");
  menu.addSubItem("finworld", "Хеджирование", "Хеджирование", "../Financial/hedgir.html", "center");
  menu.addSubItem("finworld", "Спекулятивные операции", "Спекулятивные операции", "../Financial/spekul.html", "center");
  menu.addSubItem("finworld", "Ссылки", "Ссылки", "../Financial/ssilki.html", "center");

  menu.addSubItem("about", "Наши координаты", "Наши координаты", "../About/coord.html", "center");
  menu.addSubItem("about", "О компании", "О компании", "../About/about.html", "center");
	
  menu.showMenu();
}

showToolbar();

function UpdateScr() {
  document.all["MainTable"].style.top = document.body.scrollTop;
  setTimeout("UpdateScr()", 1);
}

UpdateScr();
