bg = "";
lThis = "";
function mOver(src, clrOver) {
	if (!src.contains(event.fromElement)) {
		bg = src.bgColor;
		src.bgColor = '#FAD25A';
		src.style.cursor = 'hand';
	}
}
function mOut(src, clrIn) {
	if (!src.contains(event.toElement)) {
		src.bgColor = '#FCE6A3';
		src.style.cursor = 'default';
	}
}
function mClick(destino) { location=destino; }

function AbrirJanela(Url){
	window.open(Url,"janela","menubar=no, resizable=yes, scrollbars=yes, statusbar=yes, resize=yes, width=600, height=400, status=yes")
}
