// JavaScript Document

//SITE LGC

function retMenuRepresentadas(oRet){
	$GEBId("bloco-grid-a").innerHTML = oRet;
}


function setMenuRepresentadas(){
	ajax("supportAjax/setMenuRepresentadas.php", retMenuRepresentadas, "", "POST");
}


////////////////////////////////////////////////////////

function retRepresentadas(oRet){
	$GEBId("representadas").innerHTML = oRet;
}


function setRepresentadas(){
	ajax("supportAjax/setRepresentadas.php", retRepresentadas, "", "POST");
}

////////////////////////////////////////////////////////


	

function openDD(id){
	
	var dds = $GEBTn("dd");
		
	for(d=0;d < dds.length; d++){
	
		if(d == id){
			if($GEBId("dd_"+d).style.display == "") $GEBId("dd_"+id).style.display = "none";
			else  $GEBId("dd_"+id).style.display = "";
		 }else{
		   $GEBId("dd_"+d).style.display = "none";
		 }
	
	}

}




