/*
	taosTooltip.js
	===================================================================================
	TAOS
	Taos Tooltip JavaScript 0.5.0

		
	Updated: 05/03/2002 14:43
	Authors: Oliver Emberton (oliver@silktide.com)
	===================================================================================	
*/
	top.oPopup="";

// Popup tooltip window
function taosOpenTooltip(contentObject, linkObject, width, height)
{
	top.oPopup = window.createPopup();
	var oPopBody = top.oPopup.document.body;
	oPopBody.id="popupMessage";
	oPopBody.style.backgroundColor = "lightyellow";
	oPopBody.style.color = "black";
	oPopBody.style.border = "solid 1px black";
	oPopBody.style.padding = "4px";
	oPopBody.style.fontFamily="verdana, arial";
	oPopBody.style.fontSize="11px";
	
	oPopBody.innerHTML = contentObject.innerHTML;
	top.oPopup.show(0, 22, width, height, linkObject);
}

// Close tooltip window
function taosCloseTooltip()
{
	if (top.oPopup)
		top.oPopup.hide();
}
