//
//   --------------------------------------------------
//   Gestión del envío de información de contacto
//   -----------------------------------------------
function sendMail() {
    var mi = window.open ( '', 'envio' );
   	document.getElementById('formularioContacto').submit();
} // sendMail

function resetData() {
	document.getElementById('infoEnvio').innerHTML = "&nbsp;";
	document.getElementById('infoEnvio').style.visibility = 'hidden';
    document.getElementById('formularioContacto').reset();
} // resetData
