﻿/* *********************************************************** */

function ById(id){return document.getElementById(id)}

if (!document.all){
	document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove=get_mouse;
}

function get_mouse(e){
	nsx=e.pageX-10;
	nsy=e.pageY+5;
}

function t_i(id){
	var hlp=ById('Tp'+id);
	if (hlp){
	if (document.all){
	 nsy=event.y+document.body.scrollTop;
	 nsx=event.x+document.body.scrollLeft;
	}
	hlp.style.top=nsy+20;
	hlp.style.left=(nsx>610?nsx-470:140);
	hlp.style.visibility='visible';
}}
function t_o(id){
	var hlp=ById('Tp'+id);
	if(hlp) hlp.style.visibility='hidden';
}

/* *********************************************************** */
/*
function AddFavorite(url, title){ 
  if(window.sidebar){
    window.sidebar.addPanel(title, url,''); 
  }else if(window.opera){
    var a = document.createElement("A"); 
    a.rel = "sidebar"; 
    a.target = "_search"; 
    a.title = title; 
    a.href = url; 
    a.click(); 
  } else if(document.all){
    window.external.AddFavorite(url, title); 
  } 
}
*/
/* *********************************************************** */
