
//Verifica versão do Navegador
var ver = navigator.appVersion;
if (ver.indexOf("MSIE") == -1)
{
	changeVisibility(0);
	//alert('Versão do Navegador não suporta abrir esta página!');
	//close()
}
//--> Fim

//Bloqueia Botão direito do mouse
function click() {
if (event.button==2||event.button==3) {
 oncontextmenu='return false';
  }
}
document.onmousedown=click
document.oncontextmenu = new Function("return false;")
//--> Fim

// --> Pulsa texto
var from = 5;  		//variavel da nuvem
var to = 8;   		//variavel da nuvem
var delay = 120;    //velocidade da pulsação
var glowColor = "red";  //cor da nuvem, nome ou valor do RGB(example:'#00FF00')
var i = to; //não edite!!!
var j = 0;  //não edite!!!

function textPulseUp()
{
 if (!document.all)
  return
 if (i < to)
 {
  Text.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
  i++;
  theTimeout = setTimeout('textPulseUp()',delay);
  return 0;
 }
 if (i = to)
 {
  theTimeout = setTimeout('textPulseDown()',delay);
  return 0;
 }
}

function textPulseDown()
{
 if (!document.all)
  return
 if (i > from)
 {
  Text.style.filter = "Glow(Color=" + glowColor + ", Strength=" + i + ")";
  i--;
  theTimeout = setTimeout('textPulseDown()',delay);
  return 0;
 }
 if (i = from)
 {
  theTimeout = setTimeout('textPulseUp()',delay);
  return 0;
 }
}
//--> Fim 