
function confirmar(msgAlert){
	return window.confirm(msgAlert);
}	

function checkCorreoOrdinario(idElemento, idToDisplay){
	
	var tipoRespuestaValue = document.getElementById(idElemento).value;

	if(tipoRespuestaValue == 'correoOrdinario'){
		document.getElementById(idToDisplay).style.display = 'block';
	}
	else{
		document.getElementById(idToDisplay).style.display = 'none';
	}
}
