/*-------------------------------------------------------------------------------*/
/* Funcao para esconder um objeto												 */
/*-------------------------------------------------------------------------------*/
function escondeObjeto(id){
	if(document.getElementById(id)){
		document.getElementById(id).style.visibility='hidden';
		document.getElementById(id).style.display='none';
		if (document.getElementById(id).tagName == "DIV")
			document.getElementById(id).style.height = 0;
	}
}

/*-------------------------------------------------------------------------------*/
/* Funcao para exibir um objeto													 */
/*-------------------------------------------------------------------------------*/
function exibeObjeto(id, altura){
	if(document.getElementById(id)){
		document.getElementById(id).style.visibility='visible';
		document.getElementById(id).style.display='inline';
		if (document.getElementById(id).tagName == "DIV"){
			if (altura != undefined){
				document.getElementById(id).style.height = altura;
			}
		}
	}
}		  
/*-------------------------------------------------------------------------------*/
/* Funcao para abrir popup													 */
/*-------------------------------------------------------------------------------*/
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);  
}