function clsJanela()
{
	// Propriedades
	this.Str_Nome_Janela = "NSPTBRSCT02002";
	this.Str_Titulo_Janela = "Intervir - Gerenciamento da Execução do Projeto";
	this.Str_Toolbar = "no";
	this.Str_Location = "no";
	this.Str_Directories = "no";
	this.Str_Status = "no";
	this.Str_Menubar = "no";
	this.Str_Scrollbars = "no";
	this.Str_Resizable = "no";

	this.Str_FullScreen = "no";

	this.Int_Width = 788;
	this.Int_Height = 529;	
	this.Int_Top = 0;
	this.Int_Left = 0;
	this.Int_WidthInterno = 788;
	this.Int_HeightInterno = 529;	
	this.Int_TopInterno = 0;
	this.Int_LeftInterno = 0;

	// Metodos
	this.fnstrRetTotParm = fnstrRetTotParm; 

	return this;
}

function fnstrRetTotParm()
{
	ParmJan = "toolbar="+this.Str_Toolbar+",location="+this.Str_Location
	ParmJan = ParmJan+",directories="+this.Str_Directories+",status="+this.Str_Status
	ParmJan = ParmJan+",menubar="+this.Str_Menubar+",scrollbars="+this.Str_Scrollbars

	if (this.Str_FullScreen == "no")
	{
		ParmJan = ParmJan+",width="+this.Int_Width+",height="+this.Int_Height
		ParmJan = ParmJan+",top="+this.Int_Top+",left="+this.Int_Left

		ParmJan = ParmJan+",innerWidth="+this.Int_Width+",innerHeight="+this.Int_Height
		ParmJan = ParmJan+",screenY="+this.Int_Top+",screenX="+this.Int_Left
	
		ParmJan = ParmJan+",resizable="+this.Str_Resizable;
	}
	else
	{
		ParmJan = ParmJan+",fullScreen="+this.Str_FullScreen;
	}

	return ParmJan;
} 
