// JavaScript Document
  var k = new Array();
	k[1] = "Информацията, публикувана на тази страница, не е защитена от авторски права като нейното използване, споделяне и разпространяване се насърчава.";
	k[2] = "All the information published on this webpage is not protected by copyright and its use, sharing and dissemination are encouraged.";

function Show2(n)
{
	var balloon = document.getElementById("balloon");
	balloon.innerHTML= k[n];
	balloon.style.display = "block";
}

function Hide()
{
  var baloon = document.getElementById("balloon");
	baloon.style.display = "none";
}

function Move(e)
{
  if (!e) {
    if (!window.event) return;
    e = window.event;
  }
  
  var balloon = document.getElementById("balloon");
  var x = 0, y = 0;

  if (typeof(e.pageX) == 'number') {
    // mozilla ..
    x = e.pageX;
    y = e.pageY;
  } else if (typeof(e.clientX) == 'number') {
    x = e.clientX;
    y = e.clientY;

    if (document.documentElement && (document.documentElement.scrollLeft || document.documentElement.scrollTop)) {
          //IE 6 (in standards compliant mode)
          x += document.documentElement.scrollLeft;
          y += document.documentElement.scrollTop;
    } else if (document.body && (document.body.scrollLeft || document.body.scrollTop)) {
          //IE 4, 5 & 6 (in non-standards compliant mode)
          x += document.body.scrollLeft;
          y += document.body.scrollTop;
    }
  }
  balloon.style.left = (x + 10) + 'px';
  balloon.style.top = (y - 40) + 'px';
}

document.onmousemove = Move;

