
/* made by: Jari Kuitunen */
function popUp(urli,leveys,korkeus) {
	scrn_x = screen.width/2;
	scrn_y = screen.height/2;
	x = scrn_x - leveys/2 - 3;
	y = scrn_y - korkeus/2 - 3;
	newWindow2 = window.open(urli,'newWindow2','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,left='+x+',top='+y+',height='+korkeus+',width='+leveys);
	setTimeout('newWindow2.focus()',250);
}

