function validaForm(FM){
	if(naoPreench(FM.IDCliente,'Selecione o destinatário'))return false;
	if(naoPreench(FM.senhaUnidade,'Informa a senha de acesso'))return false;
}
function lstInst(){
	var	FM = document.encomenda;
	var dstnt = FM.IDCliente;
	dstnt.disabled = true;
	dstnt.options[dstnt.selectedIndex].text='Carregando lista. Aguarde...';
	var IDP = $("#IDProvincia").val(); //FM.IDProvincia.options[FM.IDProvincia.selectedIndex].value;
	var IDCtU = $("#IDCatUnidade").val(); //FM.IDCatUnidade.options[FM.IDCatUnidade.selectedIndex].value;
	$("[name=actionEncomenda]").attr("src", "actions/select_clientes.asp?IDP=" + IDP + "&IDCtU=" + IDCtU + "&rnd=" + new Date().getTime());
}
function carregaLista(str){
	$("#lstInstuicoes").html(str);
}
function iniLista(){
	//var lista = document.encomenda.lstDestinarios[0];
	//lista.checked = true;
	lstInst();
}