// JavaScript Document
// ******************************************* ABRE UMA POPUP CENTRALIZADA - IE 4+, NS 4+
popup = '';
// openPopup( 'about:mozilla', 'POP_NAME', 400, 300, 1, 0 );
function openPopup( sFile, sWindowName, iWidth, iHeight, bStatus, bScrollbars )
{
	iLeft = ( screen.width - iWidth ) / 2;
	iTop = ( screen.height - iHeight ) / 2;
	
	sFeatures  = 'width=' + iWidth;
	sFeatures += ',height=' + iHeight;
	sFeatures += ',top=' + iTop;
	sFeatures += ',left=' + iLeft;
	sFeatures += ',status=' + bStatus;
	sFeatures += ',scrollbars=' + bScrollbars;
	sFeatures += ',resizable= yes';

	if ( popup != '' )
		popup.close();
	popup = open( sFile, sWindowName, sFeatures );
}

// ******************************************* ABRE UMA JANELA PARA SER O ALVO DE UM FORM
function janela_abrir(url,jan,width,height)
{
	resultado=window.open(url,jan,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width="+width+",height="+height+",top=0,left=0");
}