function zoom ( pic,id, w, h ) 
{
    nwL = (screen.width - w) / 2;
    nwT = (screen.height - h) / 2;
    opt = '"toolbar=no,titlebar=no,resizable=no,menubar=no,scrollbars=no,location=no,left=' + nwL + ',top=' + nwT + ',width=' + w + ',height=' + h + '"';
    newWin = window.open ( '/zoom.phtml?pic=' + pic, 'popupWin', opt );
    newWin.focus ();
}

function obzor(sid)
{
	var win=window.open('/obzor.phtml?aid='+sid,'obzor','width=600,height=500,scrollbars=1,resizable=1');
}
