function Novo()
 {
     @session_start();
     $this->pessoa_logada = $_SESSION['id_pessoa'];
     @session_write_close();
     $obj = new clsPmicontrolesisSoftwareAlteracao($this->cod_software_alteracao, $this->pessoa_logada, $this->pessoa_logada, $this->ref_cod_software, $this->motivo, $this->tipo, $this->descricao, $this->data_cadastro, $this->data_exclusao, $this->ativo, $this->script_banco);
     $cadastrou = $obj->cadastra();
     if ($cadastrou) {
         $this->mensagem .= "Cadastro efetuado com sucesso.<br>";
         header("Location: controlesis_software_alteracao_cad.php");
         die;
         return true;
     }
     $this->mensagem = "Cadastro n&atilde;o realizado.<br>";
     echo "<!--\nErro ao cadastrar clsPmicontrolesisSoftwareAlteracao\nvalores obrigatorios\nis_numeric( {$this->ref_funcionario_cad} ) && is_numeric( {$this->ref_cod_software} ) && is_string( {$this->motivo} ) && is_string( {$this->tipo} ) && is_string( {$this->descricao} ) && is_string( {$this->script_banco} )\n-->";
     return false;
 }