/* Avaa pop-up-ikkunan näytön keskelle */

var pup=null;
function AvaaIkkuna(url,nimi,leveys,korkeus)
{
	vaaka=(screen.width)?(screen.width-leveys)/2:0;
	pysty=(screen.height)?(screen.height-korkeus)/2:0;
	asetukset='height='+korkeus+',width='+leveys+',top='+pysty+',left='+vaaka+',resizable=1'
	pup=window.open(url,nimi,asetukset)
	if(pup.window.focus){pup.window.focus();}
}
