// JavaScript Document

/*janela=null;
function jan(href,w,h,nome,scro)
{
	if (janela!=null) janela.close;
	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='+scro);
	setTimeout('janela.focus();',250);
}*/

janela=null;
function jan(href,w,h,nome,scrollbar,resizable)
{
	if (janela!=null) janela.close;
	if (scrollbar==null) scrollbar = 'yes';
	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);
}