function apripop(URL,NOME,W,H)
{
X = (screen.width - W) / 2;
Y = (screen.height - H) / 2;
P = "width=" + W + ",height=" + H + ",top=" + Y + ",left=" + X + ",";
P+= "top=" + Y + ",left=" + X + ",";
P+= "scrollbars=no,status=no,resizable=no";
POP = window.open(URL, NOME, P);
POP.window.focus();
}


