
function po(rep,ima,h){	
	
	function point(e)
	{
	var x = (navigator.appName.substring(0,3) == 'Net') ? e.pageX : event.x+document.body.scrollLeft;
	var y = (navigator.appName.substring(0,3) == 'Net') ? e.pageY : event.y+document.body.scrollTop;
	
	box.left =x+10;
	var ph= y-h+20;
	if (ph<100) ph=100; 
	box.top =ph;
	} 
	
	if (document.getElementById){
	box = document.getElementById('popbox').style;
	if(navigator.appName.substring(0,3) == 'Net')
	document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = point;
	
	if (rep==0) var content ='<TABLE BORDER=0 width=200 cellspacing=0 cellpadding=5 height=30 ><TR><TD align=center  class=info>'+ima+'</td></TR></TABLE>';
	else var content ='<TABLE BORDER=0 width=10 cellspacing=2 cellpadding=0 HEIGHT=10 id=inf ><TR><TD align=center  ><img  name=tat src='+rep+'/'+ima+'></td></TR></TABLE>';

	if (document.getElementById)
		{	  	
		document.getElementById('popbox').innerHTML = content;
	  	box.visibility = 'visible';
  		}
	}
}	
function cl()
	{
	if (document.getElementById)
  		box.visibility = 'hidden';
	}



