// Estas funcoes jogam uma nova janela no canto da tela...
function nWindowRestrito(x,w,h) {
	var popup=window.open(x,'nWindowRestrito','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h+',top=0,left=0')
}

function nWindowGeral(x,w,h) {
	var popup=window.open(x,'nWindowGeral','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h+',top=0,left=0')
}

function nWindowAnotar(x,w,h) {
	var popup=window.open(x,'nWindowAnotar','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h+',top=0,left=0')
}

function nWindowRelSimples(x,w,h) {
	var popup=window.open(x,'nWindowRelSimples','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h+',top=0,left=0')
}

function nWindowAjuda(x,w,h) {
	var popup=window.open(x,'nWindowAjuda','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width='+w+',height='+h+',top=0,left=0')
}


//  Estas funcoes jogam uma nova janela no centro da tela...
function nWindowWebMail(x,w,h) {
	var l = ( (window.screen.width  - w) / 2 );
	var t = ( (window.screen.height - h) / 2 );
	janela = window.open(x,'nWindowWebMail','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',height='+h+',width='+w+'');
}

function nWindowBC(x,w,h) {
	var l = ( (window.screen.width  - w) / 2 );
	var t = ( (window.screen.height - h) / 2 );
	janela = window.open(x,'nWindowBC','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',height='+h+',width='+w+'');
}

function mWindow(x,w,h) {
	var l = ( (window.screen.width  - w) / 2 );
	var t = ( (window.screen.height - h) / 2 );
	janela = window.open(x,'mWindow','leftmargin=0,topmargin=0,marginheight=0,marginwidth=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=NO,resizable=no,copyhistory=no,top='+t+',left='+l+',screenX='+l+',screenY='+t+',height='+h+',width='+w+'');
}
