<!--
var tt_width=380;
var bgcol = '#ECE8D9';
var headcol ='#5a4d42';
var tt_bordercol = '#5a4d42';
var ie, gecko;
function cms_hide() {tt_div.style.visibility = "hidden";}
document.write("<div id=\'tt_table\' style=\'position:absolute; left:0; top:0; width:"+tt_width+"; visibility:hidden\; z-index:32767;'></div>");
ie = document.all ? 1 : 0;
gecko = (document.getElementById("tt_table")) ? 1 : 0;
if(ie)tt_div = document.all.tt_table;
else if(gecko) tt_div = document.getElementById("tt_table");
function cms_showTT(text, e) {
var background = "style=\"background-color:"+bgcol+"; font-family:arial;  font-size:11px; color:#000000\"";
tooltip  = "<table border=0 cellspacing=0 cellpadding=2 width="+tt_width+" bgcolor="+tt_bordercol+" ><tr><td valign=\'center\'><table border=0 "+background+" cellpadding=2 cellspacing=0 width=100%><tr><td style=\"background-color:"+headcol+"; font-size:11px; font-family:arial; color:#FFFFFF\">&nbsp;</td><td style=\"background-color:"+headcol+"; font-size:11px; font-family:arial; color:#FFFFFF\"><b>Info</b></td></tr><tr><td valign=\'center\' width=\'0\'>&nbsp;</td><td valign=\'center\'>"+text+"</td></tr></table></td></tr></table>";
tt_div.innerHTML = tooltip;
if(ie) {
tt_div.style.top = document.body.scrollTop + e.y + 1;
xPos = document.body.scrollLeft + e.x;
if( xPos + tt_width > (document.body.clientWidth - 1)) xPos = document.body.clientWidth - tt_width - 10;
tt_div.style.left  = xPos;
}
else {
tt_div.style.top   = e.pageY + 1;
xPos = e.pageX;
if( xPos + tt_width > window.innerWidth) xPos = window.innerWidth - tt_width - 10;
tt_div.style.left  = xPos;
}
tt_div.style.visibility = "visible";
}
function cms_showTTIE(text, e) {
var background = "style=\"background-color:"+bgcol+"; font-family:arial;  font-size:11px; color:#000000\"";
tooltip  = "<table border=0 cellspacing=0 cellpadding=2 width="+tt_width+" bgcolor="+tt_bordercol+" ><tr><td valign=\'center\'><table border=0 "+background+" cellpadding=2 cellspacing=0 width=100%><tr><td style=\"background-color:"+headcol+"; font-size:11px; font-family:arial; color:#FFFFFF\">&nbsp;</td><td style=\"background-color:"+headcol+"; font-size:11px; font-family:arial; color:#FFFFFF\"><b>Info</b></td></tr><tr><td valign=\'top\' width=\'0\'>&nbsp;</td><td valign=\'center\'>"+text+"</td></tr></table></td></tr></table>";
tt_div.innerHTML = tooltip;
if(ie) {
tt_div.style.top = document.body.scrollTop + e.y + 1;
xPos = document.body.scrollLeft + e.x;
if( xPos + tt_width > (document.body.clientWidth - 1)) xPos = document.body.clientWidth - tt_width - 10;
tt_div.style.left  = xPos;
}
else {
tt_div.style.top   = e.pageY + 1;
xPos = e.pageX;
if( xPos + tt_width > window.innerWidth) xPos = window.innerWidth - tt_width - 10;
tt_div.style.left  = xPos;
}
tt_div.style.visibility = "visible";
}
//-->