function tstData(o) {
	var tc = event.keyCode;
	if(event.ctrlKey || event.altKey) return;
	if(tc==109 || tc==189 || tc == 38 || tc == 35 || tc == 37 || tc == 36 || tc == 39 || tc==40 || tc==41 || tc==43 || tc==45 || tc==46 || tc==127 || tc <= 31 || (tc >= 48 && tc <= 57) || (tc>=96 && tc<=105)) return;
	event.returnValue=false;
}

function cp_onDDC(s) {
	var arr = s.split('\n');
	var tam = arr.length;
	for(var i=0; i< tam; i++) {
		var arr2 = arr[i].split('|');
		if(arr2[1]!='') {
			cp_selConc.options[i+1] = new Option(arr2[1], arr2[0]);
			if(cp_concSel && arr2[0] == cp_concSel) cp_selConc.selectedIndex = i+1;
		}
	}
	cp_concSel = 0;
}

function cp_mudaDistrito(sel) {
	sel.form.mdis.value=1;
	sel.form.submit();
	/*
	var f = sel.form;
	var cod = sel.options[sel.selectedIndex].value;
	if(!f.codconcelho) return;
	cp_selConc = f.codconcelho;
	cp_concSel = 0
	var tam = cp_selConc.length;
	for(var i = 1; i < tam; i++) cp_selConc.options[1] = null;
	document.getElementById('oDownload').startDownload('ax.php?op=100&cd='+cod, cp_onDDC);
	*/
}

function ow(co, w, h) {
	window.open("si.php?ci="+co, "IMG", "width="+w+",height="+(h+50)+",location=no,menubar=no,personalbar=no,resizable=no,scrollbars=no,status=no,titlebar=yes,toolbar=no");
}
function showMenu1(m) {
	var obj = document.getElementById("LMENU"+m);
	var q = (obj.style.display == 'inline'?0:1);
	obj.style.display=(q?'inline':'none');
	var img = document.getElementById('LSETA'+m);
	if(q) {
		img.src="img/seta5.gif";
		img.width=6;
		img.height=3;
	} else {
		img.src="img/seta6.gif";
		img.height=6;
		img.width=3;
	}
}

