
<!-- Created on Aug 5, 2005 10:29:32 PM -->


	var nsx;
	var nsy;
	
	if (!document.all) {	//firefox
		document.captureEvents(Event.mousemove);	
		document.onmousemove=get_mouse;
	}

	function get_mouse(e) {
		nsx=e.pageX-100;
		nsy=e.pageY+5;
	}
	
	function layer(id){
	  var res;
	  if(document.getElementById){res=document.getElementById(id);}
	  if(document.all){res=document.all[id];}
	  if (res) return res.style;
	  return null;
	}
	
	function t_i(id) {
		var hlp=layer('Tp'+id);
		if (hlp) { alert (hlp.top);
			if (document.all) { //IE
				 nsy=event.y+document.body.scrollTop+5;
				 nsx=event.x+document.body.scrollLeft-100;
			}
			hlp.top=nsy+20;
			if (id<50)
				hlp.left=nsx-20;
			else			
				hlp.left=100;		//nagy képek és beszéd esetén
			hlp.visibility='visible';	
		}
	}
	
	function t_o(id) {
		var hlp=layer('Tp'+id);
		if(hlp) hlp.visibility='hidden';
	}
	


