﻿// JScript File

function popupall(Url,Name,width,height)
{
  LeftPosition = (screen.width) ? (screen.width-820)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-515)/2 : 0;
  window.open(Url,Name,'toolbar==,location=0,directories=0,menubar=0,scrollbars=0,resizable=0,top='+TopPosition+',left='+LeftPosition+',width=820,height=515');
};

function AbreJanela(Url,Name,width,height)
{
  LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
  window.open(Url,Name,'toolbar==,location=0,directories=0,menubar=0,scrollbars=0,resizable=0,top='+TopPosition+',left='+LeftPosition+',width='+width+',height='+height);
};


//FUNÇÃO PARA ABRIR UM POPUP DE FORMA MODAL EM TODOS OS NAVEGADORES -----------------------
function openModalWindow(strURL, strArgument, intWidth, intHeight){
var intTop = ((screen.height - intHeight) / 2);
var intLeft = ((screen.width - intWidth) / 2);
var strEnderec=strURL;
var strAjustesIE='status=0; help=0; center:yes; dialogWidth:'+intWidth+'px; dialogHeight:'+intHeight+'px';
var strAjustesNS='width='+intWidth+', height='+intHeight+', status=0, scrollbars=1, menubar=0, dependent=1, left='+intLeft+', top='+intTop;

with (window.navigator){
switch (appName){

case 'Microsoft Internet Explorer':
var x = window.showModalDialog(strEnderec, strArgument ,strAjustesIE);
break;

case 'Netscape':
var x = window.open(strEnderec, 'Default', strAjustesNS);
break;
}
}
}
//------------------------------------------------------------------------------------------------------------
