	document.write('<STYLE>');
	document.write('.ttip {border:1px solid black;font-size:12px;layer-background-color:lightyellow;background-color:lightyellow}');
	document.write('</STYLE>');
	document.write('<div id="tooltip" style="position:absolute;visibility:hidden;border:1px solid black;font-size:12px;layer-background-color:lightyellow;background-color:lightyellow;padding:1px"></div>');
	
	var isNS4 = (document.layers) ? true : false;
	var isIE45 = (document.all) ? true : false;
	var isNS6 = (!document.all && document.getElementById) ? true : false;
    
     function showtip(current,e,img)
        {
         if (isNS4)
			{
			theString="<DIV CLASS='ttip'><IMG src='"+img+"'></DIV>"
			document.tooltip.document.write(theString)
			document.tooltip.document.close()
			document.tooltip.left=e.pageX+250
			document.tooltip.top=e.pageY+200
			document.tooltip.visibility="show"
			}

         if(isNS6)
			{
			elm=document.getElementById("tooltip")
			elml=current
			elm.innerHTML="<IMG src='"+img+"'>"
			elm.style.height=elml.style.height
			elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight+200)
			elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+250)
			elm.style.visibility = "visible"
			}
			  
         if(isIE45)
			{
			elm=document.all.tooltip
			elml=current
			elm.innerHTML="<IMG src='"+img+"'>"
			elm.style.height=elml.style.height
			elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight+200)
			elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+250)
			elm.style.visibility = "visible"
			}	  
        }
		
		
function hidetip()
	{
	if(isNS4) {document.tooltip.visibility="hidden";}
	if(isNS6) {elm.style.visibility="hidden";}
	if(isIE45){elm.style.visibility="hidden";}
	}

