function toolTip(a,b){ 
    var msgToolTipHTML = " ";
    NewWindow = window.open('', 'msgToolTip', 'status=no,scrollbars=auto,resizable=no,width=300,height=110,top=150,left=150');
	NewWindow.creator=self; 
	NewWindow.document.open();

	msgToolTipHTML += "<HTML><HEAD><title>Info</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>" ;
	if (navigator.appName!='Netscape') msgToolTipHTML += "<link rel=\"stylesheet\" href=\"../atrea.css\">";
	
	msgToolTipHTML+= "</HEAD><BODY marginwidth='0' marginheight='0' topmargin='0' leftmargin='0' onLoad='' BGCOLOR='#FFFFFF'>" ;
	msgToolTipHTML+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td><img src='../imagestransp.gif' width='300' height='39' border='0'></td></tr></table>";
	msgToolTipHTML+="<div id='Layer1' style='position:absolute; left:0px; top:19px; width:290px; height:13px; z-index:50; visibility: visible'> ";
	msgToolTipHTML+="<table border='0' cellspacing='0' cellpadding='0' ALIGN='right'><tr> " ;

	if (navigator.appName!='Netscape')
	 	msgToolTipHTML+="<td class='txtrosa10px' ALIGN='right' NOWRAP>"+a+"</td>" ;
	else
	 	msgToolTipHTML+="<td ALIGN='right' NOWRAP><font face=\"Verdana\" size=\"1\" color=\"#a65d64\"><b>"+a+"</b></font></td>" ;
	   
	msgToolTipHTML+="</tr></table></div>";
	msgToolTipHTML+="<div id='divContainer' style='left: 5px; top: 35px; width: 290px; height: 250px; z-index: 36; clip: rect(0 370 250 0); visibility: visible'> ";
	msgToolTipHTML+="<div id='divContent' style=''><table width='100%' border='0' cellspacing='5' cellpadding='0'><tr><td> " ;

	if (navigator.appName!='Netscape') 
		msgToolTipHTML+="<span class='txtgris11px'>"+b+"</span>" ;
	else
		msgToolTipHTML+="<span><font face=\"Arial\" size=\"2\" color=\"#666666\">"+b+"</font></span>" ;
  
	msgToolTipHTML+="</td></tr></table></div></div></BODY></HTML>";	

	NewWindow.document.write(msgToolTipHTML);
	NewWindow.document.close();
	NewWindow.focus();	
}

function toolTip2(a,b,ancho,alto){ 
    var msgToolTipHTML = " ";
    NewWindow = window.open('', 'msgToolTip', 'status=no,scrollbars=auto,resizable=no,width='+ancho+',height='+alto+',top=150,left=150');
	NewWindow.creator=self; 
	NewWindow.document.open();

	msgToolTipHTML += "<HTML><HEAD><title>Info</title><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>" ;
	if (navigator.appName!='Netscape') msgToolTipHTML += "<link rel=\"stylesheet\" href=\"../atrea.css\">";
	
	msgToolTipHTML+= "</HEAD><BODY marginwidth='0' marginheight='0' topmargin='0' leftmargin='0' onLoad='' BGCOLOR='#FFFFFF'>" ;
	msgToolTipHTML+="<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td><img src='../imagestransp.gif' width='"+ancho+"' height='39' border='0'></td></tr></table>";
	msgToolTipHTML+="<div id='Layer1' style='position:absolute; left:0px; top:19px; width:"+(ancho-10)+"px; height:13px; z-index:50; visibility: visible'> ";
	msgToolTipHTML+="<table border='0' cellspacing='0' cellpadding='0' ALIGN='right'><tr> " ;

	if (navigator.appName!='Netscape')
	 	msgToolTipHTML+="<td class='txtrosa10px' ALIGN='right' NOWRAP>"+a+"</td>" ;
	else
	 	msgToolTipHTML+="<td ALIGN='right' NOWRAP><font face=\"Verdana\" size=\"1\" color=\"#a65d64\"><b>"+a+"</b></font></td>" ;
	   
	msgToolTipHTML+="</tr></table></div>";
	msgToolTipHTML+="<div id='divContainer' style='left: 5px; top: 35px; width: "+(ancho-10)+"px; height: 250px; z-index: 36; clip: rect(0 370 250 0); visibility: visible'> ";
	msgToolTipHTML+="<div id='divContent' style=''><table width='100%' border='0' cellspacing='5' cellpadding='0'><tr><td> " ;

	if (navigator.appName!='Netscape') 
		msgToolTipHTML+="<span class='txtgris11px'>"+b+"</span>" ;
	else
		msgToolTipHTML+="<span><font face=\"Arial\" size=\"2\" color=\"#666666\">"+b+"</font></span>" ;
  
	msgToolTipHTML+="</td></tr></table></div></div></BODY></HTML>";	

	NewWindow.document.write(msgToolTipHTML);
	NewWindow.document.close();
	NewWindow.focus();	
}

