


function okno_detail(url, features) {
detail=window.open(url, '', features);
if (!detail.opener) {
detail.opener = self;
}
if (window.focus) {
detail.focus();
}
return false;
}


