// JavaScript Document

function abrir(URL) {

  var width = 400;
  var height = 400;

  var left = 99;
  var top = 99;

  window.open(URL,'janela', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function AbrirJanelaEmed(){

                largura = parseInt(screen.availWidth)-10;                                                                                                                         
                altura = parseInt(screen.availHeight)-60;                            
                
                if (largura>1024) {largura=1024}
                if (altura>768) {altura=768}

                iLeft = (screen.availWidth-10-largura)/2;
                iTop = (screen.availHeight-60-altura)/2;
                
                var wind;
                wind = window.open("/emed/login/identificacaoConta.asp?EncerraSessao=1", "EMED", "directories=no,resizable=yes,status=yes,scrollbars=yes,top="+iTop+",left="+iLeft+",height="+altura+",width="+largura );
                wind.focus();
}
