var popup=null;
function uusi(url,nimi,leveys,korkeus){
var vaaka=(screen.width)?(screen.width-leveys)/2:0;
var pysty=(screen.height)?(screen.height-korkeus)/2:0;
var asetukset='height='+korkeus+',width='+leveys+',top='+pysty+',left='+vaaka+',status=no,toolbar=no,resizable=no,scrollbars=yes,menubar=no'
popup=window.open(url,nimi,asetukset)
if(popup.window.focus){popup.window.focus();}
}
