function enviaContacto(){
	var nombre 		= document.getElementById('nombre').value;
	var email 		= document.getElementById('email').value;
	var fono 		= document.getElementById('telefono').value;
	var comentario 	= document.getElementById('comentario').value;

	$.ajax({
		type: "POST",
		url: "procesaContacto.php",
		async: true,
		data: "nombre=" +nombre+ "&email="+email+"&telefono="+fono+"&comentario="+comentario,
		
		success: function(datos){
			if(datos=="OK"){
				alert("Tomaremos contacto con Ud. a la brevedad");
				limpiar();
			}
			if(datos=="NOK"){
				alert("se ha producido un error inesperado, intente mas tarde");
			}
		}
	});
}
function limpiar() {
	setTimeout(document.getElementById('contactenos').reset(),2000);
	return false;
}
