<!--

// status - bkg - 2008                author name                     STATUS - MOUSEOVER



<!-- 

document.write("<body leftmargin=100 topmargin=0 marginwidth=0 marginheight=0 text=#fffff link=#3366FF vlink=#00CCFF>");



var agora = new Date();
var anoN = agora.getYear();
if (navigator.appName == "Netscape")
anoN=1900 + anoN;
  

// -->
     



<!-- Hide

function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

// -->


<!-- Hide

var speed = 150;
var control = 1;

function flash()
{
  if (control == 1)
    {
      window.status = "Jorge Tavares" + " (" + anoN + ") ";
      control=0;
    }  
  else
    {
      window.status="";
      control=1;
    }
  setTimeout("flash();",speed);
}
document.onmouseover=mouse

// -->


<!-- Hide

function mouse()
{
window.status = "Jorge Tavares" + " (" + anoN + ") ";
setTimeout("erase()",1000);
}
function erase()
{
window.status="";
}
document.onmouseover=mouse

// -->