/***********************************************************
                 Texto na barra de status
***********************************************************/
var hellotext="Carmella Russo - Odontologia"
var thetext=""
var started=false
var step=0
var times=1
 function welcometext()
    {
      times--
      if (times==0)
      {
        if (started==false)
        {
          started = true;
          window.status = hellotext;
          setTimeout("anim()",1);
        }
        thetext = hellotext;
      }
    }
 function showstatustext(txt)
    {
      thetext = txt;
      setTimeout("welcometext()",4000)
      times++
    }
 function anim()
    {
     step++
      if (step==7) {step=1}
      if (step==1) {window.status=thetext}
      if (step==2) {window.status=thetext}
      if (step==3) {window.status=thetext}
      if (step==4) {window.status=thetext}
      if (step==5) {window.status=thetext}
      if (step==6) {window.status=thetext}
	  if (step==1) {window.status='>=== '+thetext+' ===<'}
      if (step==2) {window.status='=>== '+thetext+' ==<='}
	  if (step==3) {window.status='=>== '+thetext+' ==<='}
	  if (step==4) {window.status='==>= '+thetext+' =<=='}
      //if (step==3) {window.status='>=>= '+thetext+' =<=<'}
      //if (step==4) {window.status='=>=> '+thetext+' <=<='}
      if (step==5) {window.status='==>= '+thetext+' =<=='}
      if (step==6) {window.status='===> '+thetext+' <==='}
      setTimeout("anim()",300);
    }
welcometext();


/*
  abrir em tela cheia
*/

function FullWin(URL){
  x = screen.width;
  y = screen.height;
  
  window.open(URL,"","top=0,left=0,scrollbars=yes, width="+x+",height="+y);
}



/*
  adicionar aos favoritos
*/
<!-- Start 
var url_site="http://www.odontologiaestetica.com.br/" 
var titulo_site="Carmella Russo - Odontologia" 
function adiciona_bookmark(){
	if (document.all)
	    window.external.AddFavorite(url_site,titulo_site);
} 
// End --> 

function envia_link(){
  window.open("envie_email.php?url="+window.location,"","width=455,height=282,top=0,left=0");
}
/***********************************************************************************/