//-->

 window.onerror=null;
  nome = navigator.appName;
  versao = parseInt(navigator.appVersion);
  if ((nome == "Netscape" && versao >= 3) || (nome == "Microsoft Internet Explorer" && versao >= 4))
    ver = "sim";
  else
  {
    ver = "nao";alert("O seu browser encontra-se desactualizado. As versões mínimas para poder consultar este site com segurança, são as versões 4 do Microsoft Internet Explorer ou do Netscape Navigator.");
  }

function janela(winurl,wx,wy)
  {

    wx = 750;
    wy = 500;
	if (wy > 550) {wy = 550};
	winname = "w" + Math.round(Math.random() * 1000);	
	xWidth = (screen.width-wx)/2;
	yHeight = (screen.height-wy)/2;
    if (ver == "nao")
    {
       wy = wy - 40;
	   wstr = "left="+xWidth+",top="+yHeight+",scrollbars=no,menubar=mo,resizable=yes,toolbar=no,top=100px,width="+wx+",height="+wy;
       window.open(winurl,winname,wstr);
    }
    else 
    {
	   wstr = "left="+xWidth+",top="+yHeight+",scrollbars=no,menubar=no,resizable=yes,toolbar=no,top=100px,width="+wx+",height="+wy;
       window.open(winurl,winname,wstr);
    }
  }


//-->