function getForm(formName) {
    // Test if is IE or Netscape (document.layers)
    if(document.all)
        return eval(formName);
    else
        return document.forms[formName];
}

function validaPesquisaEmpreend(){
	var searchForm = getForm("pesquisa_empreends");
	  
	boolPesquisaValida = true;
	document.getElementById('empreend_erro').innerHTML = "";
	document.getElementById('nome').className = "";
	document.getElementById('distrito_concelho').className = "";
		
	if(searchForm.distrito_concelho.selectedIndex == 0 && isEmptyString(searchForm.nome.value)){
		document.getElementById('empreend_erro').innerHTML = "Por favor, preencha o nome do empreendimento ou seleccione um distrito / concelho.";
		searchForm.distrito_concelho.className = "inputs_erro";
		searchForm.nome.className = "inputs_erro";
		boolPesquisaValida = false;
	}
	searchForm.distrito_concelho_desc.value = searchForm.distrito_concelho.options[searchForm.distrito_concelho.selectedIndex].text;

	return boolPesquisaValida;
}

function cleanPesquisa(){
	document.getElementById('order_by').value = "data";
	document.getElementById('rs_offset').value = 0;
}

function orderByData(){
	document.getElementById('order_by').value = "data";
	document.getElementById('rs_offset').value = 0;
		document.getElementById('distrito_concelho_desc').value = document.getElementById('distrito_concelho').options[document.getElementById('distrito_concelho').selectedIndex].text;
	document.getElementById('pesquisa_empreends').submit();
}

function orderByFreguesia(){
	document.getElementById('order_by').value = "freguesia";
	document.getElementById('rs_offset').value = 0;
		document.getElementById('distrito_concelho_desc').value = document.getElementById('distrito_concelho').options[document.getElementById('distrito_concelho').selectedIndex].text;
	document.getElementById('pesquisa_empreends').submit();
}
