// JavaScript Document
function popupCentral(arquivo,largura,altura) {
calcleft = (screen.width / 2) - (largura / 2)
calctop = (screen.height / 2) - (altura / 2)
open(arquivo,"popup","status=no,width=" + largura + ",height=" + altura +
",left=" + calcleft + ",top=" + calctop)
}

