var text = "...Villa do Mar...Vamos para a praia...Villa do Mar..."
var speed = 100
var x = 0
function bb() {
 var a = text.substring(0,x)
 var b = text.substring(x,x+1).toUpperCase()
 var c = text.substring(x+1,text.length)
 window.status = a + b + c
 if (x == text.length) {
  x = 0
  }
 else {
  x++
 }
 setTimeout("bb()",speed)
}
bb();

//_Mensagem c/Bt direito do mouse_
 if (document.all)
 document.onmousedown=new Function("if (event.button==2||event.button==3)alert('Olá! Qualquer dúvida ligue para (11)4582-0874 ou (11)8272-9509. Obrigado!')")
 
//__abre nova pagina rolando ___
function janelanimada(endereco) {
var velocidadev = 5; 
var topo = 0;
var esquerda = 0;
var velocidadeh = 8;
if (document.all) {
var tamlar = window.screen.availHeight - topo-20;
var tamjan = window.screen.availWidth - esquerda-20;
var tamanho = window.open("","","left=" + esquerda + ",top=" + topo + ",width=1,height=1,scrollbars=yes");
for (sizeheight = 1; sizeheight < tamlar; sizeheight += velocidadev) {
tamanho.resizeTo("1",sizeheight );}
for (sizewidth = 1; sizewidth < tamjan; sizewidth += velocidadeh) {
tamanho.resizeTo(sizewidth+6,sizeheight );}
tamanho.location = endereco;}
else
window.location = endereco;}
//___________________________________
// escondendo e-mail
// JavaScript Document
function print_email(user,host,link) {
 email = user + "@" + host;
 peroba='<img src="../DESENHO/EMAIL.GIF" width="125" height="84" alt="e-mail to" border="2">'
 if(link)
  document.write("<a href='mailto:" + email + "'>");
 document.write(peroba);
 if(link)
  document.write("</a>");
}
//___________________________________