// Copyright Internet Broadcasting Ltd. 2002
// All rights reserved.
// Permission to use this code in full or part must be obtained via support@coolgoose.com

var Clock;
var Fast = 0;

function show(o,link,x,y) {
  if(!document.all || !document.all[o]) { return; };
  document.all[o].style.visibility = 'visible';
  if(document.all[o].myFlag == null) {
    document.all[o].style.posLeft = document.all[o].offsetLeft + x;
    document.all[o].style.posTop = document.all[o].offsetTop + y;
  };
  document.all[o].myFlag = true;
  Fast = 1;
  if(Clock) clearTimeout(Clock);
  Clock = setTimeout("Fast=0",1000);
};

function s(n,link) {
  o = 'tip'+n;
  if(!document.all || !document.all[o]) { return; };
  if(Fast) { Delay = 10; } else { Delay = 250; };
  setTimeout('show(o,this,35,20);',Delay);
};

function h() {
  if(!document.all) { return; };
  for(n=1; n<250; n++) {
    o = 'tip'+n;
    if(!document.all[o]) { return; };
    document.all[o].style.visibility = 'hidden';
  };
};

