//**********************************************************************
//* Copyright © Date: 08/21/2001                                       *
//* Nine Eleven Software Inc., All Rights Reserved.                    *
//* Email: support@nineelevensoftware.com                              *
//*                                                                    *
//* This group of functions will give the user a tooltip message for   *
//* the requesting area.                                               *
//**********************************************************************

//****maximum text width.
var width="400";

//****Tip background color.			
var bgcolor='#ffffe0';

//****Border Width.		
var border="1";	

//****Border Style.			
var borderstyle="outset";

//****Border Color.	
var bordercolor="#ffffff";

//****Tip Padding.	
var padding="2";

//****Font tag defaults.		
var fonttagl='<FONT face="aerial" COLOR="#000000" CLASS=3pt>'	
var fonttagr='</FONT>'	

//****Create tag layer. Width on this line is the length of the message box.
document.write('<div ID="tooltip" style="POSITION:absolute;Z-INDEX:100;width:520" align="center"></div>') 

//****Set the current message.
function tip(msg,x,y){
var Xoffset=-width/2;
var Yoffset= 15;  
  
var content='<TABLE style="BORDER-WIDTH:'+border+'px; BORDER-BOTTOM-COLOR:'+bordercolor+'; BORDER-BOTTOM-STYLE:'+borderstyle+'; BORDER-LEFT-COLOR:'+bordercolor+'; BORDER-LEFT-STYLE:'+borderstyle+'; BORDER-RIGHT-COLOR:'+bordercolor+'; BORDER-RIGHT-STYLE:'+borderstyle+'; BORDER-TOP-STYLE:'+borderstyle+'; BORDER-TOP-COLOR:'+bordercolor+';" CELLPADDING='+padding+' CELLSPACING=0 '+
'BGCOLOR='+bgcolor+' align="center"><TD ALIGN=center>'+fonttagl+msg+fonttagr+'</FONT></TD></TABLE>';
  
document.all("tooltip").innerHTML=content;

tooltip.style.left=x;
tooltip.style.top=y;

//****The next line is used for testing.
//alert(tooltip.style.width);

tooltip.style.visibility="visible";
}

//**********************************************************************
//* Copyright © Date: 08/21/2001                                       *
//* Nine Eleven Software Inc., All Rights Reserved.                    *
//* Email: support@nineelevensoftware.com                              *
//*                                                                    *
//* This code hides the tooltip after we are done with it.             *
//**********************************************************************
//****Hide the tip.
function hide() {
tooltip.style.visibility="hidden";
}