// inicio das tips


/*
This code is from Dynamic Web Coding 
at http://www.dyn-web.com/
Copyright 2001-2 by Sharon Paine 
See Terms of Use at http://www.dyn-web.com/bus/terms.html
Permission granted to use this code 
as long as this entire notice is included.
*/

if (!document.getElementById && !document.all && !document.layers)
	event = "";

function hideTip() {}

var tooltip;
function doTooltip(evt,txt) {
	if (!tooltip) return;
	var cntnt = wrapTip(txt);
	goTooltip(evt,cntnt);
}

function wrapTip(txt) {
	var cntnt = "";
	if (document.layers) {
		cntnt = '<table bgcolor="' + tipBorderColor + '" width="' + tipWidth + '" cellspacing="0" cellpadding="' + tipBorderWidth + '" border="0"><tr><td><table bgcolor="' + tipBgColor + '" width="100%" cellspacing="0" cellpadding="' + tipPadding + '" border="0"><tr><td><div style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + tipFontColor + ';">' + txt  + '</div></td></tr></table></td></tr></table>';
	} else cntnt = txt;
	return cntnt;
}

///////////////////////  CUSTOMIZE TOOLTIP HERE   ///////////////////////

var tipFollowMouse = true;	
var tipWidth = 240;

var tipOffX	= 8;
var tipOffY	= 12;

var tipFontFamily = "Arial, Helvetica, sans-serif";
var tipFontSize	= "10px";
var tipLineHeight	= 1.2;
var tipFontColor = "#3364c8";
var tipBgColor = "#e9f0f8";
var tipBgImg = "";	
var tipPadding = 4;

var tipBorderColor = "#336699"; 

var tipBorderWidth = 1;

var tipBorderStyle = "solid"; 
