function validaEmail(email) {
	var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
	return (reg.test(email));
}


function guardaAviso(form, idInmueble, precioInmueble){

	var correcto=true;
	
	err = $('span#email_error');
	if (!validaEmail(form.email.value)) {
		err.html('Introduce tu email');
		correcto = false;
	}
	else err.html('').css('display', 'none');
	
	if(correcto)
	{
		$.post('http://www.casas-houses.com/guardaAviso.php', { email: form.email.value, id: idInmueble, precio: precioInmueble, nombre: form.nombre.value, telefono: form.telefono.value },
			function(res) {
				if (res == 'ok') $('.popUpAvisa').html('<p class="mensajeOK">Gracias por tu inter&eacute;s, te contactaremos si el precio de este inmueble baja</p><input type="button" value="Cerrar" onClick="javascript:document.getElementById(\'popUpAvisa\').style.display=\'none\';" />');
				else $('.popUpAvisa').html('<span class="errorForm">No hemos podido procesar tu petición por un problema técnico, porfavor contactanos en info@casas-houses.com</strong><input type="button" value="Cerrar" onClick="javascript:document.getElementById(\'popUpAvisa\').style.display=\'none\';" />');
			}
		);
	}
	
}

function enviaAmigo(form, idInmueble, precioInmueble){

	var correcto=true;
	
	err = $('span#email_error');
	if (!validaEmail(form.email.value)) {
		err.html('Introduce tu email');
		correcto = false;
	}
	else err.html('').css('display', 'none');
	
	if(correcto)
	{
		$.post('http://www.casas-houses.com/enviaAmigo.php', { email: form.email.value, id: idInmueble, precio: precioInmueble, nombre: form.nombre.value },
			function(res) {
				if (res == 'ok') $('.popUpAvisa').html('<p class="mensajeOK">Gracias por tu inter&eacute;s, te contactaremos si el precio de este inmueble baja</p><input type="button" value="Cerrar" onClick="javascript:document.getElementById(\'popUpAvisaAmigo\').style.display=\'none\';" />');
				else $('.popUpAvisa').html('<span class="errorForm">No hemos podido procesar tu petición por un problema técnico, porfavor contactanos en info@casas-houses.com</strong><input type="button" value="Cerrar" onClick="javascript:document.getElementById(\'popUpAvisa\').style.display=\'none\';" />');
			}
		);
	}
	
}
