function bookmark(path){
var width = 320;
var height = 160;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open(path,'bookmark', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=no,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height)
}


function subscribe(path){
var width = 240;
var height = 120;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open(path,'subscribe', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=no,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height)
}


function r_create(){
var width = 300;
var height = 200;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open('/rubric_create','_rubric_create', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=no,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height)
}

function r_edit(r_id){
var width = 300;
var height = 200;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open('/rubric_create/' + r_id,'_rubric_create', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=no,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height)
}


function r_delete(r_id){
var width = 240;
var height = 120;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

  if(confirm('Вы действительно желаете удалить рубрику?')){
    window.open('/rubric_delete/' + r_id, '_rubric_delete', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=no,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height)
  }
}


function show_group(name){
var width = 400;
var height = 300;
window.open('/group/' + name,'group', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height);
}

function show_user(name){
var width = 560;
var height = 440;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open('/user/' + name,'user', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function show_messenger(name){
var width = 490;
var height = 610;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open('/messenger/' + name,'_blank', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}

function group_create(){
var width = 240;
var height = 140;
var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open('/group_create','_group_create', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=no,left=' + left + ',top=' + top + ',width=' + width + ',height=' + height)
}


function show_group_members(name){
var width = 440;
var height = 400;
window.open('/group/' + name + '/members','group', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height)
}

function show_rights(id){
var width = 240;
var height = 320;
window.open('/right/' + id,id, config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=no,width=' + width + ',height=' + height);
}


function wiki_help(){
var width = 620;
var height = 500;
window.open('/help/wiki','wiki', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height);
}




function afishaprznopen(link){
var width = 740;
var height = 550;

var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open('http://przn.ru/sites/przn.ru/import/rest_afisha_view.php?node=' + link,'przn', config='toolbar=no,location=no,resizable=yes,menubar=no,scrollbars=yes,width=' + width + ',height=' + height + ',top=' + top + ',left=' + left);
}




function open_photo_confirm(name){
var width = 740;
var height = 250;

var top = screen.availHeight/2 - height/2;
var left = screen.availWidth/2 - width/2;

window.open('/photo_confirm/' + name,'preview', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top);
}
