function Flash(src) { 
	document.write(src); 
}

function exibeOpcaoMenu(sElemento,sDisplay) {
	var oElemento = document.getElementById("MENU_"+sElemento.toUpperCase());
	if(oElemento != null) {
		oElemento.style.display = sDisplay;
		//alert(oElemento.id+" - "+sDisplay);
	}
	return;
}

function ocultaOpcoesMenu(oElemento) {
	var voElementoFilho = oElemento.childNodes;
	if(oElemento != null)
		for(var nCount = 0; nCount < voElementoFilho.length; nCount++)
			if(voElementoFilho[nCount].tagName == 'DIV')
				voElementoFilho[nCount].style.display = 'none';
	
	return;
}


