function abreFecha(ident){
	var celula = 'parag'+ident;
	if (document.getElementById(celula).style.display=='block')
	   {
		document.getElementById(celula).style.display='none';
		document.getElementById(ident).style.backgroundImage='url("/img/bull_mais.gif")';
		document.getElementById(ident).style.backgroundRepete='no-repete';
		document.getElementById(ident).style.backgroundPosition='left 4px';
		}
	else{
		document.getElementById(celula).style.display='block';
		document.getElementById(ident).style.backgroundImage='url("/img/bull_menos.gif")';
		document.getElementById(ident).style.backgroundRepete='no-repete';
		document.getElementById(ident).style.backgroundPosition='left 4px';
		}
}

function abreFechaRlt(ident){
	var celula = 'parag'+ident;
	if (document.getElementById(celula).style.display=='block')
	   {
		document.getElementById(celula).style.display='none';
		document.getElementById(ident).style.backgroundImage='url("/img/bull_mais.gif")';
		document.getElementById(ident).style.backgroundRepete='no-repete';
		document.getElementById(ident).style.backgroundPosition='right 4px';
		}
	else{
		document.getElementById(celula).style.display='block';
		document.getElementById(ident).style.backgroundImage='url("/img/bull_menos.gif")';
		document.getElementById(ident).style.backgroundRepete='no-repete';
		document.getElementById(ident).style.backgroundPosition='right 4px';
		}
}

//http://www.permadi.com/tutorial/flashjscommand/
function getFlashMovieObject(movieName) {
  
	if (window.document[movieName]) {
		return window.document[movieName];
	}

	if (navigator.appName.indexOf("Microsoft Internet")==-1) {
		if (document.embeds && document.embeds[movieName]) {
			return document.embeds[movieName]; 
		}
	} else { // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
		return document.getElementById(movieName);
	}
	
}
 
