﻿function makeStatic() {
    //if (ie4) {object1.style.pixelTop=document.body.scrollTop+offsettop}
    if (ie4) {object1.style.pixelTop=document.documentElement.scrollTop+offsettop}
    else if (ns6) {document.all['object1'].style.top=window.pageYOffset+offsettop}
    else if (ns4) {eval(document.object1.top=eval(window.pageYOffset+offsettop));}

    if (ie4) {object2.style.pixelTop=document.documentElement.scrollTop+offsettop}
    else if (ns6) {document.all['object2'].style.top=window.pageYOffset+offsettop}
    else if (ns4) {eval(document.object2.top=eval(window.pageYOffset+offsettop));}

    setTimeout("makeStatic()",0);
}
    
function ltrim(palavra){
   for(i=0;i<palavra.length;i++){
      letra=palavra.charAt(i);
      if(letra!=' '){
         return(palavra.substring(i,palavra.length));
      }
   }
   return("");
}

function rtrim(palavra){
   for(i=palavra.length-1;i>=0;i--){
      letra=palavra.charAt(i);
      if(letra!=' '){
         return(palavra.substring(0,i+1));
      }
   }
   return("");
}

function trim(palavra){
   return(ltrim(rtrim(palavra)));
}

function formataMoeda(str){
	str = str + '';
	str = replaceAll(str, ".", ",");
	var antVirgula = "";
	cont = str.indexOf(",")-1;
	if (cont <= -1) {
		antVirgula = str; 
		posVirgula = "";
	}else{ 
		antVirgula = str.substring(0,cont+1);
		posVirgula = str.substring(cont+1,str.length);
		if ((posVirgula.length < 3) ){
			posVirgula = posVirgula + "0";
		}
	}
	auxValor = "";
	numVig = 0;	
	for (n=antVirgula.length-1;n>=0;n--){
		auxValor = antVirgula.charAt(n) + auxValor;
		if ((auxValor.length - numVig) % 3 == 0) {
			auxValor = "." + auxValor;
			numVig++;
		}
	}
	if (auxValor.substring(0,1) == '.') {
		auxValor = auxValor.substring(1,auxValor.length);
	}
	antVirgula = auxValor;
	if (cont <= -1){
		antVirgula = antVirgula + ",00";
	}else{
		if (posVirgula.length > 3){
			if (posVirgula.substring(3,4) >= 5){
				posVirgula = "," + (parseInt(posVirgula.substring(1,3),10) + 1);
			}
			else{
				posVirgula = posVirgula.substring(0,3);
			}
		}
	}
	str = antVirgula + posVirgula;
	return str;
}

function replaceAll(str, c1, c2) {
	temp = "" + str; 
	while (temp.indexOf(c1)>-1) {
		pos= temp.indexOf(c1);
		temp = "" + (temp.substring(0, pos) + c2 + 
		temp.substring((pos + c1.length), temp.length));
	}
	return temp;
}

// Compare two options within a list by VALUES
function compareOptionValues(a, b) { 
  // Radix 10: for numeric values
  // Radix 36: for alphanumeric values
  var sA = parseInt( a.value, 36 );  
  var sB = parseInt( b.value, 36 );  
  return sA - sB;
}

// Compare two options within a list by TEXT
function compareOptionText(a, b) { 
  // Radix 10: for numeric values
  // Radix 36: for alphanumeric values
  var sA = 0;  
  var sB = 0;
  var r = 0;
  for (i=0; sA==sB; i++){
	sA = parseInt( a.text.substring(i,i+1), 36 );  
	sB = parseInt( b.text.substring(i,i+1), 36 );
	r = sA - sB;
  }
  return r;
}

// Dual list move function
function moveDualList( srcList, destList, moveAll ) {

  // Do nothing if nothing is selected
  if (  ( srcList.selectedIndex == -1 ) && ( moveAll == false )   )  {
    return;
  }
  newDestList = new Array( destList.options.length );

  var len = 0;

  for( len = 0; len < destList.options.length; len++ )   {
    if ( destList.options[ len ] != null )  {
      newDestList[ len ] = new Option( destList.options[ len ].text, destList.options[ len ].value, destList.options[ len ].defaultSelected, destList.options[ len ].selected );
    }
  }

  for( var i = 0; i < srcList.options.length; i++ )  { 
    if ( srcList.options[i] != null && ( srcList.options[i].selected == true || moveAll ) )    {
       newDestList[ len ] = new Option( srcList.options[i].text, srcList.options[i].value, srcList.options[i].defaultSelected, srcList.options[i].selected );
       len++;
    }
  }

  // Sort out the new destination list 
  // A ÚNICA TELA QUE USA DUALLIST NÃO PODE ORDENAR, SE APARCER OUTRA DEVE DESCOMENTAR CÓDIGO ABAIXO E TRATAR
  //newDestList.sort( compareOptionValues );   // BY VALUES
  //newDestList.sort( compareOptionText );   // BY TEXT

  // Populate the destination with the items from the new array
  for (var j = 0; j < newDestList.length; j++)  {
    if (newDestList[j] != null)  {
      destList.options[j] = newDestList[ j ];
    }
  }

  // Erase source list selected elements
  for(var i = srcList.options.length - 1; i >= 0; i-- )  { 
    if (srcList.options[i] != null && (srcList.options[i].selected == true || moveAll)){
       srcList.options[i] = null;
    }
  }

} // End of moveDualListOrdem()

// Dual list move function
function moveDualListOrdem(srcList, flgSobe) {

	// Do nothing if nothing is selected
	if (( srcList.selectedIndex == -1 )) return;
	
	newDestList = new Array( srcList.options.length );

	var len = 0;
	var lenAux = 0;
	var itm1;
	
	if (flgSobe){
		for(var i = 0; i < srcList.options.length; i++)  { 
			if (srcList.options[i] != null)    
				if (srcList.options[i].selected == true){
					newDestList[len] = new Option(srcList.options[i].text, srcList.options[i].value, srcList.options[i].defaultSelected, srcList.options[i].selected);
					len++;
				}else{
					if (itm1 != null){
						newDestList[len] = itm1;
						len++;
						itm1 = null;
					}
					itm1 = new Option( srcList.options[i].text, srcList.options[i].value, srcList.options[i].defaultSelected, srcList.options[i].selected );
				}
		}
		if (itm1 != null){
			newDestList[len] = itm1;
			len++;
			itm1 = null;
		}
	}else{
		newDestListAux = new Array( srcList.options.length );
		for(var i = 0; i < srcList.options.length; i++)  { 
			if (srcList.options[i] != null)    
				if (srcList.options[i].selected != true){
					newDestList[len] = new Option(srcList.options[i].text, srcList.options[i].value, srcList.options[i].defaultSelected, srcList.options[i].selected);
					len++;
					for (var a = 0; a < lenAux; a++)  {
						if (newDestListAux[a] != null)  {
							newDestList[len] = newDestListAux[a];
							newDestListAux[a] = null;
							len++;
						}
					}
					lenAux = 0;
				}else{
					newDestListAux[lenAux] = new Option( srcList.options[i].text, srcList.options[i].value, srcList.options[i].defaultSelected, srcList.options[i].selected );
					lenAux++;
				}
		}
		for (var a = 0; a < lenAux; a++)  {
			if (newDestListAux[a] != null)  {
				newDestList[len] = newDestListAux[a];
				newDestListAux[a] = null;
				len++;
			}
		}
		lenAux = 0;
	}
	
	// Erase source list selected elements
	for(var i = srcList.options.length - 1; i >= 0; i-- )  { 
		if (srcList.options[i] != null){
			srcList.options[i] = null;
		}
	}
	// Populate the destination with the items from the new array
	for (var j = 0; j < len; j++)  {
		if (srcList[j] == null)  {
			srcList.options[j] = newDestList[j];
		}
	}

} // End of moveDualListOrdem()

function copyDualList( srcList, destList, moveAll ) {

  // Do nothing if nothing is selected
  if (  ( srcList.selectedIndex == -1 ) && ( moveAll == false )   )  {
    return;
  }
  newDestList = new Array( destList.options.length );

  var len = 0;

  for( len = 0; len < destList.options.length; len++ )   {
    if ( destList.options[ len ] != null )  {
      newDestList[ len ] = new Option( destList.options[ len ].text, destList.options[ len ].value, destList.options[ len ].defaultSelected, destList.options[ len ].selected );
    }
  }

  for( var i = 0; i < srcList.options.length; i++ )  { 
    if ( srcList.options[i] != null && ( srcList.options[i].selected == true || moveAll ) )    {
       newDestList[ len ] = new Option( srcList.options[i].text, srcList.options[i].value, srcList.options[i].defaultSelected, srcList.options[i].selected );
       len++;
    }
  }

  // Sort out the new destination list 
  // A ÚNICA TELA QUE USA DUALLIST NÃO PODE ORDENAR, SE APARCER OUTRA DEVE DESCOMENTAR CÓDIGO ABAIXO E TRATAR
  //newDestList.sort( compareOptionValues );   // BY VALUES
  //newDestList.sort( compareOptionText );   // BY TEXT

  // Populate the destination with the items from the new array
  for (var j = 0; j < newDestList.length; j++)  {
    if (newDestList[j] != null)  {
      destList.options[j] = newDestList[ j ];
    }
  }

} // End 


// Dual list move function
function removeDualList( srcList, moveAll ) {

  // Do nothing if nothing is selected
  if (  ( srcList.selectedIndex == -1 ) && ( moveAll == false )   )  {
    return;
  }

  // Erase source list selected elements
  for(var i = srcList.options.length - 1; i >= 0; i-- )  { 
    if (srcList.options[i] != null && (srcList.options[i].selected == true || moveAll)){
       srcList.options[i] = null;
    }
  }

} // End 

//validação de valores reais
function FiltroReal(event){
	var tecla;
	var key;
	var strValidos = '0123456789,';
	if( navigator.appName.indexOf('Netscape')!= -1 )
		tecla= event.which;
	else
		tecla= event.keyCode;
	caractere = String.fromCharCode( tecla);
	if ((strValidos.indexOf(caractere) == -1) && (tecla != 0) && (tecla != 8))
		return false;
	else
		return true;
}
function ValidaReal(checkStr){
    if( checkStr == '' )
      return  true;
    var marMil = '.';
    var marDec = ',';
    var checkOK = '0123456789-';
    var allValid = true;
    var decPoints = 0;
    var allNum = '';
    var contCasas = 0;
    var Ponto = false;
    var temPonto = 0;
	temPonto = checkStr.indexOf(marMil);
    ch = checkStr.charAt(0);
    for (j = 0;  j < checkOK.length;  j++){
	    if (ch == checkOK.charAt(j)) break;
		if ((j+1) == checkOK.length){
		allValid = false;
		break;
		}
    }
	if (allValid) {
		allNum += ch;
		if (ch == '-'){
		checkOK = '0123456789';
		if (checkStr.length == 1) return false;
		}
		else { checkOK = '0123456789,.'; contCasas++; }
		for (i = 1;  i < checkStr.length;  i++){
		ch = checkStr.charAt(i);
		for (j = 0;  j < checkOK.length;  j++)
		    if (ch == checkOK.charAt(j))
		    break;
		    if (j == checkOK.length){
		    allValid = false;
		    break;
		    }
		if (ch == marDec){
		    allNum += '.';
		    decPoints++;
		    checkOK = '0123456789';
		    contCasas = 0;
		    Ponto = false;
		}
		else{
			if (ch != marMil){
		    allNum += ch;
			contCasas++;
			if ((contCasas > 3) && (temPonto >= 0) && (decPoints == 0)){
				allValid = false;
				break;
			}
			if ((contCasas == 3) && (temPonto >= 0) && (decPoints == 0)) checkOK = '0123456789.,';
		    }
		    else{
			if ((contCasas > 3) && (decPoints == 0)){
				allValid = false;
				break;
			}
			Ponto = true;
			contCasas = 0;
			checkOK = '0123456789';
		    }
		}
		}
	}
	if (Ponto && (contCasas != 3)) return false;
    if (!allValid)
		return false;
    if (decPoints > 1)
        return false;
    return true;
}//fim validação de valores reais


function TextBoxKeyPressFormata(Mascara) 
{
	var event = window.event;  // to handle both NS and IE events
	var objForm = event.target ? event.target : event.srcElement;
	var inputChar = String.fromCharCode(event.keyCode ? event.keyCode : event.charCode);
	var iKeyCode = event.keyCode;

	var texto = objForm.value;
	if (texto.length >= objForm.maxLength) return false;
	var textoAux = "";

	for (i=0; i<Mascara.length; i++)
	{
		if (Mascara.charAt(i) != '0' && Mascara.charAt(i) != '#' && Mascara.charAt(i) != 'a' && Mascara.charAt(i) != 'l')
		{
			texto = texto.replace(Mascara.charAt(i),"");
		} 
	}
	texto = texto + inputChar;

	if (iKeyCode == 8)
		texto = texto.substr(0, texto.length-1);

	var indiceMascara = 0;
	var indiceTexto = 0;
	var inseriuMascara = false;

	if (Mascara.charAt(0) == '#')
	{
		indiceMascara = Mascara.length;
		for (indiceTexto=texto.length -1; indiceTexto>=0; indiceTexto-- )	
		{
			do 
			{
				inseriuMascara = false;
				if (indiceMascara > 0) indiceMascara = indiceMascara - 1;
				if (Mascara.charAt(indiceMascara) == '0' || Mascara.charAt(indiceMascara) == '#') 
				{
					if (iKeyCode > 47 && iKeyCode < 58)
						textoAux = texto.charAt(indiceTexto) + textoAux;
					else return false;
				} else if (Mascara.charAt(indiceMascara) == 'a') 
				{
					if ((iKeyCode > 47 && iKeyCode < 58) || (iKeyCode > 64 && iKeyCode < 91) || (iKeyCode > 96 && iKeyCode < 123))
						textoAux = texto.charAt(indiceTexto) + textoAux;
					else return false;
				} else if (Mascara.charAt(indiceMascara) == 'l') 
				{
					if ((iKeyCode > 64 && iKeyCode < 91) || (iKeyCode > 96 && iKeyCode < 123))
						textoAux = texto.charAt(indiceTexto) + textoAux;
					else return false;
				} else
				{
					textoAux = Mascara.charAt(indiceMascara) + textoAux;
					inseriuMascara = true;
				}
			} while (inseriuMascara);
			if (textoAux.length >= objForm.maxLength) break;
		}
	}
	else
	{
		for (indiceTexto=0; indiceTexto< texto.length; indiceTexto++ )	
		{
			iKeyCode = texto.charCodeAt(indiceTexto)
			do 
			{
				inseriuMascara = false;
				if (Mascara.charAt(indiceMascara) == '0' || Mascara.charAt(indiceMascara) == '#') 
				{
					if (iKeyCode > 47 && iKeyCode < 58)
						textoAux = textoAux + texto.charAt(indiceTexto);
					else return false;
				} else if (Mascara.charAt(indiceMascara) == 'a') 
				{
					if ((iKeyCode > 47 && iKeyCode < 58) || (iKeyCode > 64 && iKeyCode < 91) || (iKeyCode > 96 && iKeyCode < 123))
						textoAux = textoAux + texto.charAt(indiceTexto);
					else return false;
				} else if (Mascara.charAt(indiceMascara) == 'l') 
				{
					if ((iKeyCode > 64 && iKeyCode < 91) || (iKeyCode > 96 && iKeyCode < 123))
						textoAux = textoAux + texto.charAt(indiceTexto);
					else return false;
				} else
				{
					textoAux = textoAux + Mascara.charAt(indiceMascara);
					inseriuMascara = true;
				}
				if (indiceMascara < Mascara.length - 1) indiceMascara = indiceMascara + 1;
			} while (inseriuMascara);
			if (textoAux.length >= objForm.maxLength) break;
		}
	}
	objForm.value = textoAux;
	return false;		
}


function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

//div flutuante

function MM_timelinePlay(tmLnName, myID) { //v1.2
 
  //Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Macromedia, Inc. All rights reserved.
 
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,propNum,theObj,firstTime=false;
 
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
 
  tmLn = document.MM_Time[tmLnName];
 
  if (myID == null) { myID = ++tmLn.ID; firstTime=true;}//if new call, incr ID
 
  if (myID == tmLn.ID) { //if Im newest
 
    setTimeout('MM_timelinePlay("'+tmLnName+'",'+myID+')',tmLn.delay);
 
    fNew = ++tmLn.curFrame;
 
    for (i=0; i<tmLn.length; i++) {
 
      sprite = tmLn[i];
 
      if (sprite.charAt(0) == 's') {
 
        if (sprite.obj) {
 
          numKeyFr = sprite.keyFrames.length; firstKeyFr = sprite.keyFrames[0];
 
          if (fNew >= firstKeyFr && fNew <= sprite.keyFrames[numKeyFr-1]) {//in range
 
            keyFrm=1;
 
            for (j=0; j<sprite.values.length; j++) {
 
              props = sprite.values[j]; 
 
              if (numKeyFr != props.length) {
 
                if (props.prop2 == null) sprite.obj[props.prop] = props[fNew-firstKeyFr];
 
                else        sprite.obj[props.prop2][props.prop] = props[fNew-firstKeyFr];
 
              } else {
 
                while (keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]) keyFrm++;
 
                if (firstTime || fNew==sprite.keyFrames[keyFrm-1]) {
 
                  if (props.prop2 == null) sprite.obj[props.prop] = props[keyFrm-1];
 
                  else        sprite.obj[props.prop2][props.prop] = props[keyFrm-1];
 
        } } } } }
 
      } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
 
      if (fNew > tmLn.lastFrame) tmLn.ID = 0;
 
  } }
 
}
 
 
 
function MM_openBrWindow(theURL,winName,features) { //v2.0
 
  window.open(theURL,winName,features);
 
}
 
function MM_timelineGoto(tmLnName, fNew, numGotos) { //v2.0
  //Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Macromedia, Inc. All rights reserved.
  var i,j,tmLn,props,keyFrm,sprite,numKeyFr,firstKeyFr,lastKeyFr,propNum,theObj;
  if (document.MM_Time == null) MM_initTimelines(); //if *very* 1st time
  tmLn = document.MM_Time[tmLnName];
  if (numGotos != null)
    if (tmLn.gotoCount == null) tmLn.gotoCount = 1;
    else if (tmLn.gotoCount++ >= numGotos) {tmLn.gotoCount=0; return}
  jmpFwd = (fNew > tmLn.curFrame);
  for (i = 0; i < tmLn.length; i++) {
    sprite = (jmpFwd)? tmLn[i] : tmLn[(tmLn.length-1)-i]; //count bkwds if jumping back
    if (sprite.charAt(0) == "s") {
      numKeyFr = sprite.keyFrames.length;
      firstKeyFr = sprite.keyFrames[0];
      lastKeyFr = sprite.keyFrames[numKeyFr - 1];
      if ((jmpFwd && fNew<firstKeyFr) || (!jmpFwd && lastKeyFr<fNew)) continue; //skip if untouchd
      for (keyFrm=1; keyFrm<numKeyFr && fNew>=sprite.keyFrames[keyFrm]; keyFrm++);
      for (j=0; j<sprite.values.length; j++) {
        props = sprite.values[j];
        if (numKeyFr == props.length) propNum = keyFrm-1 //keyframes only
        else propNum = Math.min(Math.max(0,fNew-firstKeyFr),props.length-1); //or keep in legal range
        if (sprite.obj != null) {
          if (props.prop2 == null) sprite.obj[props.prop] = props[propNum];
          else        sprite.obj[props.prop2][props.prop] = props[propNum];
      } }
    } else if (sprite.charAt(0)=='b' && fNew == sprite.frame) eval(sprite.value);
  }
  tmLn.curFrame = fNew;
  if (tmLn.ID == 0) eval('MM_timelinePlay(tmLnName)');
}
 
function MM_initTimelines() { //v4.0
    //MM_initTimelines() Copyright 1997 Macromedia, Inc. All rights reserved.
    var ns = navigator.appName == "Netscape";
    var ns4 = (ns && parseInt(navigator.appVersion) == 4);
    var ns5 = (ns && parseInt(navigator.appVersion) > 4);
    var macIE5 = (navigator.platform ? (navigator.platform == "MacPPC") : false) && (navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4);
    document.MM_Time = new Array(1);
    document.MM_Time[0] = new Array(3);
    document.MM_Time["Timeline1"] = document.MM_Time[0];
    document.MM_Time[0].MM_Name = "Timeline1";
    document.MM_Time[0].fps = 15;
    document.MM_Time[0][0] = new String("sprite");
    document.MM_Time[0][0].slot = 1;
    if (ns4)
        document.MM_Time[0][0].obj = document["anuncio"];
    else if (ns5)
        document.MM_Time[0][0].obj = document.getElementById("anuncio");
    else
        document.MM_Time[0][0].obj = document.all ? document.all["anuncio"] : null;
    document.MM_Time[0][0].keyFrames = new Array(1, 130);
    document.MM_Time[0][0].values = new Array(2);
    if (ns5 || macIE5)
        document.MM_Time[0][0].values[0] = new Array("75px", "77px", "79px", "81px", "83px", "85px", "87px", "89px", "91px", "93px", "95px", "97px", "99px", "101px", "103px", "105px", "107px", "109px", "111px", "113px", "115px", "117px", "119px", "121px", "123px", "125px", "127px", "129px", "131px", "133px", "135px", "137px", "139px", "140px", "142px", "144px", "146px", "148px", "150px", "152px", "154px", "156px", "158px", "160px", "162px", "164px", "166px", "168px", "170px", "172px", "174px", "176px", "178px", "180px", "182px", "184px", "186px", "188px", "190px", "192px", "194px", "196px", "198px", "200px", "202px", "204px", "206px", "208px", "210px", "212px", "214px", "216px", "218px", "220px", "222px", "224px", "226px", "228px", "230px", "232px", "234px", "236px", "238px", "240px", "242px", "244px", "246px", "248px", "250px", "252px", "254px", "256px", "258px", "260px", "262px", "264px", "266px", "267px", "269px", "271px", "273px");
        //document.MM_Time[0][0].values[0] = new Array("175px", "177px", "179px", "181px", "183px", "185px", "187px", "189px", "191px", "193px", "195px", "197px", "199px", "201px", "203px", "205px", "207px", "209px", "211px", "213px", "215px", "217px", "219px", "221px", "223px", "225px", "227px", "229px", "231px", "233px", "235px", "237px", "239px", "240px", "242px", "244px", "246px", "248px", "250px", "252px", "254px", "256px", "258px", "260px", "262px", "264px", "266px", "268px", "270px", "272px", "274px", "276px", "278px", "280px", "282px", "284px", "286px", "288px", "290px", "292px", "294px", "296px", "298px", "300px", "302px", "304px", "306px", "308px", "310px", "312px", "314px", "316px", "318px", "320px", "322px", "324px", "326px", "328px", "330px", "332px", "334px", "336px", "338px", "340px", "342px", "344px", "346px", "348px", "350px", "352px", "354px", "356px", "358px", "360px", "362px", "364px", "366px", "367px", "369px", "371px", "373px", "375px", "377px", "379px", "381px", "383px", "385px", "387px", "389px", "391px", "393px", "395px", "397px", "399px", "401px", "403px", "405px", "407px", "409px", "411px", "413px", "415px", "417px", "419px", "421px", "423px", "425px", "427px", "429px", "431px");
    
    else
        document.MM_Time[0][0].values[0] = new Array(75,77,79,81,83,85,87,89,91,93,95,97,99,101,103,105,107,109,111,113,115,117,119,121,123,125,127,129,131,133,135,137,139,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,267,269,271,273);
        //document.MM_Time[0][0].values[0] = new Array(175,177,179,181,183,185,187,189,191,193,195,197,199,201,203,205,207,209,211,213,215,217,219,221,223,225,227,229,231,233,235,237,239,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,367,369,371,373);
        //document.MM_Time[0][0].values[0] = new Array(175,177,179,181,183,185,187,189,191,193,195,197,199,201,203,205,207,209,211,213,215,217,219,221,223,225,227,229,231,233,235,237,239,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,367,369,371,373,375,377,379,381,383,385,387,389,391,393,395,397,399,401,403,405,407,409,411,413,415,417,419,421,423,425,427,429,431);
    document.MM_Time[0][0].values[0].prop = "left";
    if (ns5 || macIE5)
        document.MM_Time[0][0].values[1] = new Array("112px", "111px", "111px", "110px", "110px", "109px", "108px", "108px", "107px", "107px", "106px", "105px", "105px", "104px", "104px", "103px", "102px", "102px", "101px", "101px", "100px", "99px", "99px", "98px", "97px", "97px", "96px", "96px", "95px", "94px", "94px", "93px", "93px", "92px", "91px", "91px", "90px", "90px", "89px", "88px", "88px", "87px", "87px", "86px", "85px", "85px", "84px", "84px", "83px", "82px", "82px", "81px", "81px", "80px", "79px", "79px", "78px", "78px", "77px", "76px", "76px", "75px", "75px", "74px", "73px", "73px", "72px", "71px", "71px", "70px", "70px", "69px", "68px", "68px", "67px", "67px", "66px", "65px", "65px", "64px", "64px", "63px", "62px", "62px", "61px", "61px", "60px", "59px", "59px", "58px", "58px", "57px", "56px", "56px", "55px", "55px", "54px", "53px", "53px");
        //document.MM_Time[0][0].values[1] = new Array("312px", "311px", "311px", "310px", "310px", "309px", "308px", "308px", "307px", "307px", "306px", "305px", "305px", "304px", "304px", "303px", "302px", "302px", "301px", "301px", "300px", "299px", "299px", "298px", "297px", "297px", "296px", "296px", "295px", "294px", "294px", "293px", "293px", "292px", "291px", "291px", "290px", "290px", "289px", "288px", "288px", "287px", "287px", "286px", "285px", "285px", "284px", "284px", "283px", "282px", "282px", "281px", "281px", "280px", "279px", "279px", "278px", "278px", "277px", "276px", "276px", "275px", "275px", "274px", "273px", "273px", "272px", "271px", "271px", "270px", "270px", "269px", "268px", "268px", "267px", "267px", "266px", "265px", "265px", "264px", "264px", "263px", "262px", "262px", "261px", "261px", "260px", "259px", "259px", "258px", "258px", "257px", "256px", "256px", "255px", "255px", "254px", "253px", "253px", "252px", "252px", "251px", "250px", "250px", "249px", "249px", "248px", "247px", "247px", "246px", "245px", "245px", "244px", "244px", "243px", "242px", "242px", "241px", "241px", "240px", "239px", "239px", "238px", "238px", "237px", "236px", "236px", "235px", "235px", "234px");
    else
        document.MM_Time[0][0].values[1] = new Array(112,111,111,110,110,109,108,108,107,107,106,105,105,104,104,103,102,102,101,101,100,99,99,98,97,97,96,96,95,94,94,93,93,92,91,91,90,90,89,88,88,87,87,86,85,85,84,84,83,82,82,81,81,80,79,79,78,78,77,76,76,75,75,74,73,73,72,71,71,70,70,69,68,68,67,67,66,65,65,64,64,63,62,62,61,61,60,59,59,58,58,57,56,56,55,55,54,53,53,52,52);
        //document.MM_Time[0][0].values[1] = new Array(212,211,211,210,210,209,208,208,207,207,206,205,205,204,204,203,202,202,201,201,200,199,199,198,197,197,196,196,195,194,194,193,193,192,191,191,190,190,189,188,188,187,187,186,185,185,184,184,183,182,182,181,181,180,179,179,178,178,177,176,176,175,175,174,173,173,172,171,171,170,170,169,168,168,167,167,166,165,165,164,164,163,162,162,161,161,160,159,159,158,158,157,156,156,155,155,154,153,153,152,152);
        //document.MM_Time[0][0].values[1] = new Array(312,311,311,310,310,309,308,308,307,307,306,305,305,304,304,303,302,302,301,301,300,299,299,298,297,297,296,296,295,294,294,293,293,292,291,291,290,290,289,288,288,287,287,286,285,285,284,284,283,282,282,281,281,280,279,279,278,278,277,276,276,275,275,274,273,273,272,271,271,270,270,269,268,268,267,267,266,265,265,264,264,263,262,262,261,261,260,259,259,258,258,257,256,256,255,255,254,253,253,252,252,251,250,250,249,249,248,247,247,246,245,245,244,244,243,242,242,241,241,240,239,239,238,238,237,236,236,235,235,234);
    document.MM_Time[0][0].values[1].prop = "top";
    if (!ns4) {
        document.MM_Time[0][0].values[0].prop2 = "style";
        document.MM_Time[0][0].values[1].prop2 = "style";
    }
    document.MM_Time[0][1] = new String("sprite");
    document.MM_Time[0][1].slot = 1;
    if (ns4)
        document.MM_Time[0][1].obj = document["anuncio"];
    else if (ns5)
        document.MM_Time[0][1].obj = document.getElementById("anuncio");
    else
        document.MM_Time[0][1].obj = document.all ? document.all["anuncio"] : null;
    document.MM_Time[0][1].keyFrames = new Array(135, 200);
    document.MM_Time[0][1].values = new Array(2);
    if (ns5 || macIE5)
        document.MM_Time[0][1].values[0] = new Array("75px", "77px", "79px", "81px", "83px", "85px", "87px", "89px", "91px", "93px", "95px", "97px", "99px", "101px", "103px", "105px", "107px", "109px", "111px", "113px", "115px", "117px", "119px", "121px", "123px", "125px", "127px", "129px", "131px", "133px", "135px", "137px", "139px", "140px", "142px", "144px", "146px", "148px", "150px", "152px", "154px", "156px", "158px", "160px", "162px", "164px", "166px", "168px", "170px", "172px", "174px", "176px", "178px", "180px", "182px", "184px", "186px", "188px", "190px", "192px", "194px", "196px", "198px", "200px", "202px", "204px", "206px", "208px", "210px", "212px", "214px", "216px", "218px", "220px", "222px", "224px", "226px", "228px", "230px", "232px", "234px", "236px", "238px", "240px", "242px", "244px", "246px", "248px", "250px", "252px", "254px", "256px", "258px", "260px", "262px", "264px", "266px", "267px", "269px", "271px", "273px");
        //document.MM_Time[0][1].values[0] = new Array("431px", "433px", "435px", "437px", "439px", "441px", "443px", "445px", "447px", "449px", "451px", "453px", "455px", "457px", "459px", "461px", "463px", "465px", "467px", "469px", "471px", "473px", "475px", "477px", "479px", "481px", "483px", "485px", "487px", "489px", "491px", "493px", "495px", "498px", "500px", "502px", "504px", "506px", "508px", "510px", "512px", "514px", "516px", "518px", "520px", "522px", "524px", "526px", "528px", "530px", "532px", "534px", "536px", "538px", "540px", "542px", "544px", "546px", "548px", "550px", "552px", "554px", "556px", "558px", "560px", "562px");
    else
        document.MM_Time[0][1].values[0] = new Array(75,77,79,81,83,85,87,89,91,93,95,97,99,101,103,105,107,109,111,113,115,117,119,121,123,125,127,129,131,133,135,137,139,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,267,269,271,273);
       //document.MM_Time[0][1].values[0] = new Array(175,177,179,181,183,185,187,189,191,193,195,197,199,201,203,205,207,209,211,213,215,217,219,221,223,225,227,229,231,233,235,237,239,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,367,369,371,373);
        //document.MM_Time[0][1].values[0] = new Array(431,433,435,437,439,441,443,445,447,449,451,453,455,457,459,461,463,465,467,469,471,473,475,477,479,481,483,485,487,489,491,493,495,498,500,502,504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548,550,552,554,556,558,560,562);
    document.MM_Time[0][1].values[0].prop = "left";
    if (ns5 || macIE5)
        document.MM_Time[0][1].values[1] = new Array("112px", "111px", "111px", "110px", "110px", "109px", "108px", "108px", "107px", "107px", "106px", "105px", "105px", "104px", "104px", "103px", "102px", "102px", "101px", "101px", "100px", "99px", "99px", "98px", "97px", "97px", "96px", "96px", "95px", "94px", "94px", "93px", "93px", "92px", "91px", "91px", "90px", "90px", "89px", "88px", "88px", "87px", "87px", "86px", "85px", "85px", "84px", "84px", "83px", "82px", "82px", "81px", "81px", "80px", "79px", "79px", "78px", "78px", "77px", "76px", "76px", "75px", "75px", "74px", "73px", "73px", "72px", "71px", "71px", "70px", "70px", "69px", "68px", "68px", "67px", "67px", "66px", "65px", "65px", "64px", "64px", "63px", "62px", "62px", "61px", "61px", "60px", "59px", "59px", "58px", "58px", "57px", "56px", "56px", "55px", "55px", "54px", "53px", "53px");
        //document.MM_Time[0][1].values[1] = new Array("234px", "238px", "243px", "247px", "251px", "255px", "260px", "264px", "268px", "272px", "277px", "281px", "285px", "290px", "294px", "298px", "302px", "307px", "311px", "315px", "320px", "324px", "328px", "332px", "337px", "341px", "345px", "349px", "354px", "358px", "362px", "367px", "371px", "375px", "379px", "384px", "388px", "392px", "397px", "401px", "405px", "409px", "414px", "418px", "422px", "426px", "431px", "435px", "439px", "444px", "448px", "452px", "456px", "461px", "465px", "469px", "474px", "478px", "482px", "486px", "491px", "495px", "499px", "503px", "508px", "512px");
    else
        document.MM_Time[0][1].values[1] = new Array(112,111,111,110,110,109,108,108,107,107,106,105,105,104,104,103,102,102,101,101,100,99,99,98,97,97,96,96,95,94,94,93,93,92,91,91,90,90,89,88,88,87,87,86,85,85,84,84,83,82,82,81,81,80,79,79,78,78,77,76,76,75,75,74,73,73,72,71,71,70,70,69,68,68,67,67,66,65,65,64,64,63,62,62,61,61,60,59,59,58,58,57,56,56,55,55,54,53,53,52,52);
        //document.MM_Time[0][1].values[1] = new Array(212,211,211,210,210,209,208,208,207,207,206,205,205,204,204,203,202,202,201,201,200,199,199,198,197,197,196,196,195,194,194,193,193,192,191,191,190,190,189,188,188,187,187,186,185,185,184,184,183,182,182,181,181,180,179,179,178,178,177,176,176,175,175,174,173,173,172,171,171,170,170,169,168,168,167,167,166,165,165,164,164,163,162,162,161,161,160,159,159,158,158,157,156,156,155,155,154,153,153,152,152);
        //document.MM_Time[0][1].values[1] = new Array(234,238,243,247,251,255,260,264,268,272,277,281,285,290,294,298,302,307,311,315,320,324,328,332,337,341,345,349,354,358,362,367,371,375,379,384,388,392,397,401,405,409,414,418,422,426,431,435,439,444,448,452,456,461,465,469,474,478,482,486,491,495,499,503,508,512);
    document.MM_Time[0][1].values[1].prop = "top";
    if (!ns4) {
        document.MM_Time[0][1].values[0].prop2 = "style";
        document.MM_Time[0][1].values[1].prop2 = "style";
    }
    document.MM_Time[0][2] = new String("behavior");
    document.MM_Time[0][2].frame = 201;
    document.MM_Time[0][2].value = "MM_timelineGoto('Timeline1','1')";
    document.MM_Time[0].lastFrame = 201;
    for (i=0; i<document.MM_Time.length; i++) {
        document.MM_Time[i].ID = null;
        document.MM_Time[i].curFrame = 0;
        document.MM_Time[i].delay = 1000/document.MM_Time[i].fps;
    }
}