function new_window(path) {
    win_left=(window.screen.width-571)/2+80;
    win_top=(window.screen.height-400)/2;
    window.open(path,'mywindow','resizable=no,scrollbars=yes,width=594,height=418,left='+win_left+',top='+win_top);
}

function new_picture_window(path,width_picture, height_picture) {
//    win_left=(window.screen.width-width_picture)/2+80;
//    win_top=(window.screen.height-height_picture)/2;
//    window.open(path,'mywindow','resizable=no,scrollbars=yes,width='+width_picture+',height='+height_picture+',left='+win_left+',top='+win_top);
    if (window.screen.height<height_picture) {
        width_picture = width_picture +17;
        height_picture = window.screen.height - 30;
        var scroll = 1;
    } else {
        var scroll = 0;
    }
    window.open(path,'mywindow','left=0,top=0,width='+width_picture+',height='+height_picture+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scroll+',resizable=0');
}

function otvor(id)
   {
    window.open('/mojagaleria.php?id='+id,'fotogaleria','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=630');
   }

