function EscondeMenu(campo,imagem){
	var div;
	div = document.getElementById(campo);
	
	if (div.style.display == "none") {
		document.getElementById(campo).style.display = "block";
		document.getElementById(imagem).src = "/ArquivosEstaticos/OiMovel/img/botoes/bt_menos.gif";
	}
	else {
		document.getElementById(campo).style.display = "none";
		
		if (( imagem.indexOf("link") == "3" ) || ( imagem.indexOf("paises") > -1 )) {
			document.getElementById(imagem).src = "/ArquivosEstaticos/OiMovel/img/botoes/bt_mais2.gif";
		} else {
			document.getElementById(imagem).src = "/ArquivosEstaticos/OiMovel/img/botoes/bt_mais.gif";
		}
		
	}
}

function geraFlash($arquivo,$largura,$altura){
    document.writeln('    <object type="application/x-shockwave-flash" data="'+ $arquivo +'" width="'+ $largura +'" height="'+ $altura +'">');
    document.writeln('        <param name="movie" value="' + $arquivo + '" />');
    document.writeln('        <param name="menu" value="false" />');
    document.writeln('        <param name="quality" value="high" />');
	document.writeln('        <param name="wmode" value="opaque" />');
    document.writeln('    </object>');
}

function abreFecha(object) {
	obj = document.getElementById(object);
	obj.className = obj.className == "mostra" ? "esconde" : "mostra";	
}

function trocaTexto(object) {
	obj = document.getElementById(object); 
    obj.innerHTML = obj.innerHTML == "+" ? "-" : "+"
}