// JavaScript Document

janela=null;
function jan(href,w,h,nome,scrollbar,resizable)
{
	if (janela!=null) janela.close;
	if (scrollbar==null) scrollbar = 'no';
	if (resizable==null) resizable = 'no';
	x = (screen.width-(w))/2;
	y = ((screen.height-28)-(h))/2;
	janela=window.open(href,nome,'width='+w+',height='+h+',left='+x+',top='+y+',scrollbars='+scrollbar+',resizable='+resizable+'');
	setTimeout('janela.focus()',250);
}