// JavaScript Document
/******************************************************************************
function sendContactEmail()
******************************************************************************/
function sendContactEmail(){
	var nombre = document.getElementById('form_contacto_nombre').value;
	var tfno = document.getElementById('form_contacto_telefono').value;
	var email = document.getElementById('form_contacto_email').value;
	var consulta = document.getElementById('form_contacto_msg').value;
	
	if(nombre == '' || tfno == '' || email == '' || consulta == ''){
		jAlert('Por favor, rellena todos tus datos.', 'Existen campos vacíos en el formulario');
	} else{
		var to = 'info@bzmoto.com';
		var asunto = 'Consulta del cliente '+nombre+' a través de http://www.bzmoto.com'; 
		var mensaje = 'Cliente: '+nombre+'<br/>';
		mensaje += 'Teléfono: '+tfno+'<br/>';
		mensaje += 'Email: '+email+'<br/><br/>';
		mensaje += 'Consulta:<br/><br/>'+consulta;
		
		jQuery.post('utils/Email.php', {funcion:'sendContactEmail', to:to, subject:asunto, cuerpo:mensaje}, function(data){
			if(data == 'OK'){
				jQuery("#popup_contacta").fadeOut("slow");jQuery("#popup_behind").fadeOut("slow");
				jAlert('Tu consulta ha sido enviada correctamente. En breve recibirás respuesta. Gracias.', 'MENSAJE ENVIADO');
			} else if (data == 'ERROR'){
				jQuery("#popup_contacta").fadeOut("slow");jQuery("#popup_behind").fadeOut("slow");
				jAlert('Por problemas del servidor de correo, en este momento no es posible enviar tu consulta, por favor, inténtalo más tarde.', 'PROBLEMAS EN EL SERVIDOR');
			}
		});
	}
}
