function SelectDistrito(_distrito) {
	var pesq = document.getElementById("txtDistrito");
	var div_d = document.getElementById("div_distrito");
	pesq.value = _distrito;
	if (_distrito=='Distrito') pesq.value='';
	div_d.innerText = _distrito;
	if(div_d.innerText == 'Castelo Branco') div_d.innerText = 'C. Branco';
	if(div_d.innerText == 'Viana do Castelo') div_d.innerText = 'V. Castelo';
}

function SelectDistrito2(_distrito) {
	var pesq = document.getElementById("txtDistrito");
	pesq.value = _distrito;
	var div_d = document.getElementById("div_distrito")
	div_d.innerText = _distrito
	if(div_d.innerText == 'Castelo Branco') div_d.innerText = 'C. Branco';
	if(div_d.innerText == 'Viana do Castelo') div_d.innerText = 'V. Castelo';
}

function ProcSubmit() {
	var txt_pesq = document.getElementById("txt_pesquisa");
	var pesq = document.getElementById("txtPesquisa");
	var dist = document.getElementById("txtDistrito");
	pesq.value=txt_pesq.value;
	if((pesq.value != "Procure qualquer actividade") && (pesq.value != "")) {
		if((dist.value == "")){alert("Por favor, escolha um distrito."); return false; }
		document.getElementById('frm_pesq').submit();
	}
}

function ProcSubmitEnter(e) {
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	if (keycode == 13) {
		var txt_pesq = document.getElementById("txt_pesquisa");
		var pesq = document.getElementById("txtPesquisa");
		pesq.value=txt_pesq.value;
		if(pesq.value == "") return;		
		document.getElementById('frm_pesq').submit();
		return false;
	}
	else
		 return true;
}

function load(id) {
	var load = window.open('ficha.php?id='+id,'','scrollbars=yes,menubar=no,height=640,width=800,resizable=no,toolbar=no,location=no,status=no,directories=no,copyhistory=no');
}

function load2(nome) {
	var load = window.open(nome+'.php','','scrollbars=yes,menubar=no,height=500,width=700,resizable=no,toolbar=no,location=no,status=no,directories=no,copyhistory=no');
}

function SelectActividade(actividade) {
	var pesq = document.getElementById("txt_pesquisa");
	pesq.value = actividade;
	var aux = document.getElementById("txtFlag");
	aux.value = 1;
	//window.scrollTo(0,0);
	$('html, body').animate({scrollTop:0}, 'slow');
	//return false;
}

function centrar() {
	$('html, body').animate({scrollTop:350}, 'slow');
}

function SelectActividade2(actividade) {
	var pesq = document.getElementById("txt_pesquisa");
	pesq.value = actividade;
	var aux = document.getElementById("txtFlag");
	aux.value = 1;
	$('html, body').animate({scrollTop:0}, 'slow');
}

function centrar2() {
	$('html, body').animate({scrollTop:300}, 'slow');
}

function validar() {
	if(document.getElementById('nomeempresa').value == "" || document.getElementById('nome').value == "" || document.getElementById('telefone').value == "" || document.getElementById('email').value == "") {
		alert("Por favor preencha os campos Nome Empresa, Nome, Telefone e Email.");
		return false;
	}
	else {
		return true;
	}
}

function validar2() {
	if(document.getElementById('nome').value == "" || document.getElementById('email').value == "" || document.getElementById('telefone').value == "" || document.getElementById('localidade').value == "") {
		alert("Por favor preencha os campos Nome, Email, Telefone e Localidade.");
		return false;
	}
	else {
		return true;
	}
}

