function fp_areaemergente_setcontfromdivelem_show(idarea,contcod){
	
	if (areaobj=fp_get_element_by_id_siexiste(idarea)){
		fp_areaemergente_setcontfromdivelem_showbyobj(areaobj,contcod);
	}
}
function fp_areaemergente_setcontfromdivelem_showbyobj(areaobj,contcod){
	if(divelem=mw_dom_get_child_by_id(areaobj,"_areaemergente_elemcontinfodiv")){
		if (contelem=mw_dom_get_child_by_id(divelem,contcod)){	
			if (contelemch=contelem.childNodes){
				for (i=0;i<contelemch.length;i++){
					idchelem=contelemch[i].id;
					//alert("areaemergente_"+idchelem);
					if(contenedor=mw_dom_get_childdeep_by_idandtagname(areaobj,"areaemergente_"+idchelem,"DIV")){
					  // mw_dom_get_child_by_id(areaobj,"areaemergente_"+idchelem)){
						contenedor.innerHTML=contelemch[i].innerHTML;
					}
				}
				
			}
		}
	}
	areaobj.style.display="";
}