// Popparit keskelle näyttöä.
var akkuna = null;
function UusiIkkuna(url,nimi,leveys,korkeus) {
  var vaaka=(screen.width)?(screen.width-leveys)/2:0;
  var pysty=(screen.height)?(screen.height-korkeus)/2:0;
  var asetukset='width='+leveys+',height='+korkeus+',top='+pysty+',left='+vaaka+',toolbar=0,status=0,menubar=0';
  akkuna=window.open(url,nimi,asetukset);
  if(akkuna.window.focus) {
    akkuna.window.focus();
  }
}

