function subrayar_contacto(){
	document.getElementById('enlace_contacto').style.textDecoration = 'underline';
}

function quitar_subrayar_contacto(){
	document.getElementById('enlace_contacto').style.textDecoration = 'none';
}