var url = "http://JoaTex.com";
var titulo = "JoaTex.com - Software!";  
var tip=new Array
   tip[0]='Selecciona Home!'
   tip[1]='Email para Sugestões ou Dúvidas!'
   tip[2]='Recomende Nosso Site a Um Amigo!'
   tip[3]='Registo Dados Para Login!'
   tip[4]='Sobre Nosso Site!'
   tip[5]='Sua Sugestão no Livro Visitas!'
   tip[6]='Coloca Endereço nos Favoritos! '
   
function date() {
         message="<div class='blue1' style='text-align:center; padding-bottom:6px'>";
         var today = new Date();
         dayStr = today.toLocaleString();
			dayStr= dayStr.substring(0,(dayStr.length)-8);
         document.write(message + dayStr + "</div>");
}
function makeLink(){ 	//Code:<A HREF="javascript:makeLink()">Bookmark Us</A>
	if(document.all){
	window.external.AddFavorite(url,titulo);}
}

function showtip(current,e,num) {
   if (document.layers) // Netscape 4.0+
{     theString="<DIV CLASS='ttip'>"+tip[num]+"</DIV>"
      document.tooltip.document.write(theString)
      document.tooltip.document.close()
      document.tooltip.left=e.pageX+6
      document.tooltip.top=e.pageY+2
      document.tooltip.visibility="show"}
   else {
   if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
      {elm=document.getElementById("tooltip")
      elml=current
      elm.innerHTML=tip[num]
      elm.style.height=elml.style.height
      elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight+90)
      elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+150)
      elm.style.visibility = "visible" }}}
	  
function hidetip(){
if (document.layers) // Netscape 4.0+
   {document.tooltip.visibility="hidden"}
   else {
      if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
      {elm.style.visibility="hidden"}}}