function webmail() {
	window.open('http://200.204.143.223:82','jan_um','width=800,height=480,toolbar=0,status=0,scrollbars=1,menubar=0,resizable=1');
}

function artigo (param) {
	novaJanela = window.open(param, 'Artigo', 'width=720,height=480,toolbar=1,status=0,scrollbars=1,menubar=0,resizable=1'); 
	novaJanela.focus();
}

// Funcoes para mostrar ou ocultar objetos
function mostra(objeto) {
	elemento = 'document.getElementById(\'' + objeto + '\')';
	eval(elemento).style.display = 'inline';
}
function esconde(objeto) {
	elemento = 'document.getElementById(\'' + objeto + '\')';
	eval(elemento).style.display = 'none';
}
function mostraEsconde(objMostra,objEsconde) {
	mostra(objMostra);
	esconde(objEsconde);
}
function mostraAlterna(objeto) {
	elemento = 'document.getElementById(\'' + objeto + '\')';
	if (eval(elemento).style.display == 'block')
		eval(elemento).style.display = 'none';
	else
		eval(elemento).style.display = 'block';
}