// JavaScript Document

function seleciona(pagina) {
	window.location = "http://www.imobusca.com.br/institucional.php?page="+pagina;
}

function enviaCadastro() {
	var email = document.getElementById('mailanuncio').value;
	var checkbox = document.getElementById('checkreceber').checked;
	if (email.indexOf("@") > 1) {
		var i = email.indexOf("@");
		var temPonto = 0;
		var temOutroArroba = 0;
		i++;
		while (i < email.length) {
			i++;
			if (email.charAt(i) == ".") {
				temPonto = 1;
				var posPonto = i;
			}
			if (email.charAt(i) == "@") {
				temOutroArroba = 1;
			}
		}
		if ((temPonto != 1)||(temOutroArroba != 0)||((posPonto + 2)>=(email.length))) {
			alert("Informe o seu e-mail corretamente!");
			document.getElementById('mailanuncio').focus();
			return false;
		}
	}else{
		alert("Informe o seu e-mail corretamente!");
		document.getElementById('mailanuncio').focus();
		return false;
	}
	if (checkbox == true) {
		document.getElementById('fmail').action = "anunciar_cadastrar.php";
		document.getElementById('fmail').submit();
	}else{
		alert("Para cadastrar seu e-mail, você precisa marcar que deseja receber o aviso por e-mail!");
		return false;
	}
}