function menuOn(id) {

	var elemento = document.getElementById(id).style;

	if (elemento.display == 'none') {
		elemento.display = 'block';
	} else {
		elemento.display = 'none';
	}
}

function alerta(id) {

	var elemento = document.getElementById(id).style;

	if (elemento.display == 'none') {
		elemento.top = ((screen.height/2)-200)+'px';
		elemento.left = ((screen.width/2)-120)+'px';
		elemento.display = 'block';
	} else {
		elemento.display = 'none';
	}
}

function imprimir() {

	var _url	= window.location.href;
	var _janela = window.open (_url,"Imprimir","resizable=1,scrollbars=1,width=650,height=560");

	if (confirm("Uma nova janela se abrirá, você deseja continuar?")) {
		_janela.document.getElementById('cabecalho').style.display = 'none';
		_janela.document.getElementById('menu').style.display = 'none';
		_janela.document.getElementById('rodaPe').style.display = 'none';
		_janela.document.getElementById('corpo').style.width = '610px';
		_janela.document.getElementById('conteudo').style.margin = '0px';
		_janela.focus();
	} else {
		_janela.close();
	}
}