function abrir_popup(nome, url, w, h, scroll) {
	w_total = (screen.width - w) / 2;
	h_total = (screen.height - h) / 2;
	propriedades = 'height='+h+',width='+w+',top='+h_total+',left='+w_total+',scrollbars='+scroll;
	window.open(url, nome, propriedades);
}

function mostra(campo) {
	var div = document.getElementById(campo);
	if (div.className == "desaparece")	div.className = "aparece";
	else div.className = "desaparece";
}

function confirmBox(msg) {
	if (!confirm(msg)) { return false; }
}
