function showtip(current,e,num,txt)
{
 if (document.layers) // Netscape 4.0+
	{
	 theString="<DIV CLASS='ttip'>" + tip[num] + "</DIV>"
	 document.tooltip.document.write(theString)
	 document.tooltip.document.close()
	 document.tooltip.left=e.pageX+14
	 document.tooltip.top=e.pageY+20
	 document.tooltip.visibility="show"
	}
 else
   {
	if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
	  {
	   elm=document.getElementById("tooltip")
	   elml=current
	   //elm.innerHTML=tip[num]
	   elm.innerHTML=txt
	   elm.style.height=elml.style.height
	   //elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight)
	   elm.style.top=parseInt(elml.offsetTop+280)
	   elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+350)
	   elm.style.visibility = "visible"
	  }
   }
}
function hidetip()
{
if (document.layers) // Netscape 4.0+
   {
    document.tooltip.visibility="hidden"
   }
else
  {
   if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
     {
      elm.style.visibility="hidden"
     }
  }
}
function Open_Window (theURL,winName,features)
{
	window.open (theURL,winName,features);
}

