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 = 420;
var height = 400;
window.open('/user/' + name,'user', config='toolbar=no,location=no,resizable=no,menubar=no,scrollbars=yes,width=' + width + ',height=' + height);
}

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)
}

