function validar_email(email)
	{
		var the_at = email.indexOf("@");
		var the_dot = email.lastIndexOf(".");
		var a_space = email.indexOf(" ");
		
		if (
			 (the_at != -1) &&
			 (the_at != 0) &&
			 (the_dot != -1) &&
			 (the_dot > the_at +1) &&
			 (the_dot < email.length - 1) &&
			 (a_space == -1)
			)
				{

				return true;
				}
				else
				{
				alert ("Campo de e-mail foi preenchido de forma incorreta!");
				return false;
				}  	
	}
