function npshowtip(current,e,text)
{
	if (document.all)
	{
		thetitle=text.split('<BR>')
		if (thetitle.length>1)
		{
			thetitles=''
			for (i=0;i<thetitle.length;i++)
      thetitles+=thetitle[i]
      current.title=thetitles
    }
    else
      current.title=text
    }

    else if (document.layers){
      document.tooltip.document.write('<layer bgColor="white" style="border:1px solid black;font-size:12px;">'+text+'</layer>')
      document.tooltip.document.close()
      document.tooltip.left=e.pageX+5
      document.tooltip.top=e.pageY+5
      document.tooltip.visibility="show"
    }
  }

function nphidetip() {
  if (document.layers)
  document.tooltip.visibility="hidden"
}

//Don't forget tag to copy and paste the div located right after the BODY tage and thenn to give it an ID="tooltip". This script will not work without it obviously. I hope you
//like it and enjoy it. For those who want to create an IE4-only text tip, just put a 
//TITLE="your text here" within the DIV or A tag. When the mouse moves over it, it will
//show the text you put for the TITLE. This is almost the same as the ALT text in images that
//appears when you MouseOver the image.

//Put div in the body of your page
//<div id="tooltip" style="POSITION: absolute; VISIBILITY: hidden"></div>

//Then wherever you want the tooltip put in the onMouseOver
//onMouseOver="showtip(this,event,'Click on the score to see the results of the game.')"

