// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



function abre_fecha(numero_div, quant_divs){

	//loop para contar quantas divs tem na pagina, e vai fechar as outras
	for(e=0; e < quant_divs; e++){
		document.getElementById("dados_portfolio"+e).style.display = "none";
	}
	var caixa_div = document.getElementById("dados_portfolio"+numero_div);
	
	caixa_div.style.display = "inline";
	caixa_div.style.width = 140+"px";
	caixa_div.style.height= 190+"px";
	
	caixa_div.style.borderWidth= "1px";
	caixa_div.style.borderStyle= "solid";
	caixa_div.style.borderColor= "#0033FF";
	
	caixa_div.style.padding = "3px";
	

}


function fecha_div_port(numero_div){
		var caixa_div = document.getElementById("dados_portfolio"+numero_div);
		
		if(caixa_div.style.display == "none"){
			caixa_div.style.display = "inline";	
		}
		else{
			caixa_div.style.display = "none"
		}
		
}

