﻿function NovaJanela(_strUrl, _strNomePagina, _strLargula, _strAltura)
{
    var _tempoAtual = new Date();
    var _void = _tempoAtual.getSeconds() + _tempoAtual.getMilliseconds();
    var _retWindow = "";

    if (document.all&&window.print)
    {
        _retWindow = window.showModalDialog(_strUrl+"&void="+_void+"",_strNomePagina,"help:0;resizable:0;status:0;dialogWidth:"+_strLargula+"px;dialogHeight:"+_strAltura+"px");			
		
    }
    else
    {
        _retWindow = window.open(_strUrl+"&void="+_void+"",_strNomePagina,"width="+_strLargula+"px,height="+_strAltura+"px,resizable=1,scrollbars=1");
    }
}


function NovaJanelaNormal(_strUrl, _strNomePagina, _strLargula, _strAltura)
{
    var _tempoAtual = new Date();
    var _void = _tempoAtual.getSeconds() + _tempoAtual.getMilliseconds();


    window.open(_strUrl+"&void="+_void+"",_strNomePagina,"width="+_strLargula+"px,height="+_strAltura+"px,resizable=1,scrollbars=1");
}

function newWin(url, tar, wid, hei)
{
    var esquerda = ((screen.width - wid) / 2);   
    var topo = ((screen.height - hei) / 2);
    var voidDate = new Date();
    if ( url.indexOf('?') > 0 )
    {
	    url = url + '&vd=' + voidDate.getMinutes() + voidDate.getSeconds();
	}
	else
	{
	    url = url + '?vd=' + voidDate.getMinutes() + voidDate.getSeconds();
	}
    
    var win = window.open(url,tar,'height='+ hei +',width='+ wid +',top='+topo+',left='+esquerda+',scrollbars=1,toolbar=0,status=0');
    
}
