
/* ###################################################   FUNCION JAVASCRIPT QUE ENVIA POR POST UNA VARIABLE
###########   
###########   seccion : La seccion que ha de ser cargada
###########   
###########   
###########   (c) Grupo5.com | http://www.grupo5.com
###########   
###########   */

function componer_fecha (id) {
	if ( (id != "") && (id != "") ) {

		var dia=document.getElementById(id+'_d').value;
		var mes=document.getElementById(id+'_m').value;
		var ano=document.getElementById(id+'_a').value;

		var fecha="";
        if ( dia != "" && mes != "" && ano!="" ){
			fecha=ano+"-"+mes+"-"+dia;
		}else{
			fecha="";
		}

		document.getElementById(id).value=fecha;
		/*$('#mensajes').html('Fecha Resultante:'+fecha);*/

	}else{
		alert( 'Error en los parametros de entrada formar_fecha().');
	}
}






