/* ©2001 coolmaps.com - http://club.coolmaps.com - clubmaster@coolmaps.com */
var CTstyle='<style>';
CTstyle+='#tooltip {';
CTstyle+='position: absolute;';
CTstyle+='visibility: hidden;';
CTstyle+='z-index: 4001;';
CTstyle+='border-width: '+CTbw+'px;';
CTstyle+='border-style: solid;';
CTstyle+='border-color: '+CTbc+';';
CTstyle+='}';
CTstyle+='</style>';
document.write(CTstyle);
var CTNS4=(document.layers) ? 1 : 0;
var CTNS6=(navigator.userAgent.toLowerCase().indexOf("gecko") != -1) ? 1 : 0;
var CTIE4=(document.all && navigator.appVersion.indexOf("Mac") == -1) ? 1 : 0;
var CTbp=3;
var CTx;
var CTy;
var CTtimer=0;
var CTgo=0;
function CTgetObj(r) { 
	if (CTNS4) { var r=eval("document."+r); } 
	else if (CTNS6) { var r=document.getElementById(r); } 
	else if (CTIE4) { var r=eval("document.all."+r); } 
	return r;}
function CTmoveTo(x,y) { 
	obj=CTgetObj("tooltip"); 
	if (CTNS4) { obj.left=x; obj.top=y; } 
	else if (CTNS6) { obj.style.left=x+'px'; obj.style.top=y+'px'; } 
	else if (CTIE4) { obj.style.posLeft=x; obj.style.posTop=y; }}
function CTgetWinWidth() { 
	if (CTNS4 || CTNS6) { var r=window.innerWidth; } 
	else if (CTIE4) { var r=document.body.clientWidth; } 
	return r;}
function CTgetWinHeight() { 
	if (CTNS4 || CTNS6) { var r=window.innerHeight; } 
	else if (CTIE4) { var r=document.body.clientHeight; } 
	return r;}
function CTgetHeight() { 
	obj=CTgetObj("tooltip"); 
	if (CTNS4) { var r=obj.document.height; } 
	else if (CTNS6) { var r=parseInt(obj.style.height); } 
	else if (CTIE4) { var r=obj.style.pixelHeight; } 
	return r;}
function CThide() { 
	obj=CTgetObj("tooltip"); 
	if (CTNS4) { obj.visibility='hide'; } 
	else if (CTNS6) { obj.style.visibility='hidden'; } 
	else if (CTIE4) { obj.style.visibility='hidden'; }}
function CTshow() { 
	obj=CTgetObj("tooltip"); 
	if (CTNS4) { obj.visibility='show'; } 
	else if (CTNS6) { obj.style.visibility='visible'; } 
	else if (CTIE4) { obj.style.visibility='visible'; }}
function CTcreateDiv() { 
	if (CTNS4 || CTIE4) { document.write('<DIV ID="tooltip"></DIV>'); document.close(); } 
	else if (CTNS6) { var CTbody=document.getElementsByTagName('body'); var CTa=CTbody[0].appendChild(document.createElement('div')); CTa.id="tooltip"; }}
	if (CTNS4 || CTIE4) { CTcreateDiv(); }
function CTtrack(e) { 
	if (CTNS4 || CTNS6) { CTy=e.pageY; CTx=e.pageX; } 
	else if (CTIE4) { CTy=window.event.y+document.body.scrollTop; CTx=window.event.x+document.body.scrollLeft; } 
	if (CTx+CTwidth+10 >= CTgetWinWidth()) { CTx=CTx-10-CTwidth; } 
	else { CTx=CTx+10; } 
	if (CTy+CTgetHeight()+20 >= CTgetWinHeight()) { CTy=CTy-CTgetHeight(); } 
	else { CTy=CTy+20; } 
	CTgo=1;}
function CTs(CTtemp) 
{ 
	
	var CTpos=CTtemp.indexOf('*:',0); 
	var CTtitle=CTtemp.substr(0,CTpos); 
	var CTtext=CTtemp.substr(CTpos+2); 
	var CTbox=""; 
	if (CTNS4) { CTbox+='<TABLE BORDER="0" BGCOLOR="'+CTbc+'" CELLSPACING="0" CELLPADDING="'+CTbw+'"><TR><TD>'; } 
	CTbox+='<TABLE BORDER="0" WIDTH="'+CTwidth+'" BGCOLOR="'+CTbgc+'" CELLSPACING="0" CELLPADDING="0">\r\n'; 
	if (CTtitle != "") { 
		CTbox+='<TR><TD BGCOLOR="'+CTtbc+'">'; 
		CTbox+='<CENTER><FONT FACE="'+CTfont+'" SIZE="'+CTtfs+'" COLOR="'+CTtfc+'">'+CTtitle+'</FONT></CENTER>'; 
		CTbox+='</TD></TR>'; } 
	CTbox+='<TR><TD>';
	CTbox+='<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0"><TR><TD COLSPAN="3" HEIGHT="'+CTbp+'"></TD></TR>'; 
	CTbox+='<TR><TD WIDTH="'+CTbp+'"></TD><TD WIDTH="'+(CTwidth-(CTbp*2))+'">'; 
	CTbox+='<FONT FACE="'+CTfont+'" SIZE="'+CTsfs+'" COLOR="'+CTsfc+'">'+CTtext+'</FONT>'; 
	CTbox+='</TD><TD WIDTH="'+CTbp+'"></TD></TR>'; 
	CTbox+='<TR><TD COLSPAN="3" HEIGHT="'+CTbp+'"></TD></TR></TABLE>'; 
	CTbox+='</TD></TR></TABLE>'; 
	if (CTNS4) { CTbox += '</TD></TR></TABLE>'; } 
	obj=CTgetObj("tooltip"); 
	if (CTIE4 || CTNS6) { obj.innerHTML=CTbox; } 
	else if (CTNS4) { 
		obj.document.write(CTbox); 
		obj.document.close(); } 
	CTshowit(); 
	CTDisplay();
	}
function CTshowit() { 
	if (CTgo) { CTshow(); } 
	else { setTimeout("CTshowit();",250); }}
function CTDisplay() { 
	CTmoveTo(CTx,CTy); 
	CTtimer=setTimeout("CTDisplay();",20);}
function CTh() { 
	CThide(); 
	CTmoveTo(0,0); 
	clearTimeout(CTtimer);}
function CTstart() { 
	if (CTNS6) { CTcreateDiv(); } 
	if (CTNS4) { document.captureEvents(Event.MOUSEMOVE); } 
	document.onmousemove=CTtrack;}
