var error_formulario_es = "Por favor, rellene todos los campos del formulario antes de enviar";
var error_formulario_en = "Please, fill all the gaps in the form before sending";

function alertLan(id_error, lan){
	if(id_error=="error_formulario"){
		if(lan=="es")
			alert(error_formulario_es);
		else if(lan=="en")
			alert(error_formulario_en);
	}
}
