
<!--Barra de Stats-->
var hellotext="PUBLICIDADE - DIVULGUE SUA EMPRESA AQUI!!!  0xx(88) 3572-1613 | 8816-1613  LIGUE!!!"
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==16) {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==7) {window.status='=>=>========='+thetext+'=========<=<='}
      if (step==8) {window.status='>=>=>========'+thetext+'========<=<=<'}
      if (step==9) {window.status='=>=>=>======='+thetext+'=======<=<=<='}
      if (step==10) {window.status='==>=>=>======'+thetext+'======<=<=<=='}
      if (step==11) {window.status='===>=>=>====='+thetext+'=====<=<=<==='}
      if (step==12) {window.status='====>=>=>===='+thetext+'====<=<=<===='}
      if (step==13) {window.status='=====>=>=>==='+thetext+'===<=<=<====='}
      if (step==14) {window.status='======>=>=>=='+thetext+'==<=<=<======'}
      if (step==15) {window.status='=======>=>=>='+thetext+'=<=<=<======='}
      if (step==16) {window.status='========>=>=>'+thetext+'<=<=<========'}     
      setTimeout("anim()",88);
    }
welcometext();

<!--



/***********************************************
* Switch Menu script- by Martial B of http://getElementById.com/
* Modified by Dynamic Drive for format & NS4/IE4 compatibility
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

if (document.getElementById){ //DynamicDrive.com change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span"); //DynamicDrive.com change
		if(el.style.display != "block"){ //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu") //DynamicDrive.com change
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}
//-->

<!---->
var win = null;
function NovaJanela(pagina,nome,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(pagina,nome,settings);
}



/*
Static menu script II (By maXimus, maximus@nsimail.com, http://absolutegb.com/maximus/)
Modified slightly/ permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

function move(x) {
if (document.all) {
object1.style.pixelLeft += x;
object1.style.visibility = "visible"}
else if (document.layers) {
document.object1.left += x;
document.object1.visibility = "show"}};

function makeStatic() {
if (document.all) {object1.style.pixelTop=document.body.scrollTop+20}
else {eval(document.object1.top=eval(window.pageYOffset+20));}
setTimeout("makeStatic()",0);}