function popupcentral(arquivo,largura,altura)
{
	calcleft = (screen.width / 2) - (largura / 2);
	calctop = (screen.height / 2) - (altura / 2);
	open(arquivo,"popup","width=" + largura + ",height=" + altura + ",left=" + calcleft + ",top=" + calctop);
}