
/* funcao que abre janelas popup
author: Simone Pereira - simone@dynamix.com.br
since: 06/05/2003
*/

function abrirAuxiliar(end,nome,w,h)
{
    var ww = Math.abs(w)+0;
    var hh = Math.abs(h)+0;
    prop = 'toolbar=0,location=0,status=0,menubar=0,resizable=no,scrollbars=1,directories=0,left=50,top=20,width=' + ww + ',height=' +hh;
    janela = window.open (end,nome,prop);
    janela.focus();
	//return janela;
}


/* funcao que abre janelas popup com botao maximizar habilitado - Solicitacao Unimed Curitiba para o sisteam SAPIENS
author: Charles Trevizan - trevizan@dynamix.com.br
since: 06/02/2004
*/
function abrirAuxiliar2(end,nome,w,h)
{
    var ww = Math.abs(w)+0;
    var hh = Math.abs(h)+0;
    prop = 'toolbar=0,location=0,status=0,menubar=0,resizable=yes,scrollbars=1,directories=0,left=50,top=20,width=' + ww + ',height=' +hh;
    janela = window.open (end,nome,prop);
    janela.focus();
	//return janela;
}


/* funcao que abre janelas popup, forçando a janela a omitir as barras de rolagem.
author: Nestor Kammer - nestor@dynamix.com.br
since: 01/12/2006
*/

function abrirAuxiliar3(end,nome,w,h)
{
    var ww = Math.abs(w)+0;
    var hh = Math.abs(h)+0;
    prop = 'toolbar=0,location=0,status=0,menubar=0,resizable=no,scrollbars=0,directories=0,left=50,top=20,width=' + ww + ',height=' +hh;
    janela = window.open (end,nome,prop);
    janela.focus();
	//return janela;
}
