function popup(url, w, h) {
var left=(screen.width-w)/2;
var top=(screen.height-h)/2;
okno=window.open(url,'snow','width='+w+',height='+h+',left='+left+',top='+top);
if (window.focus) {okno.focus()}
return false;
}

