function texteditor(page){
 window.open("texteditor.php?page=" + page, "TextEditor", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=750, height=600, resizable=no");	
}

function texteditorEdit(page, id, mode){
 window.open("texteditor.php?page=" + page + "&mode=" + mode + "&id=" + id, "TextEditor", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=750, height=600, resizable=no");	
}

function facultyeditor(){
 window.open("texteditor_faculty.php", "FacultyEditor", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=600, resizable=no");	
}

function facultyeditorEdit(id, mode){
 window.open("texteditor_faculty.php?id=" + id + "&mode=" + mode, "FacultyEditor", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=600, resizable=no");	
}

function addUser(){
 window.open("adduser.php", "AddUser", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=600, resizable=no");	
}

function addAlbum(){
 window.open("album_add.php", "NewAlbum", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=400, resizable=no");	
}

function vaddAlbum(){
 window.open("valbum_add.php", "NewVideoAlbum", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=400, resizable=no");	
}

function editAlbum(id){
 window.open("album_add.php?mode=edit&id=" + id, "NewAlbum", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=400, resizable=no");	
}

function veditAlbum(id){
 window.open("valbum_add.php?mode=edit&id=" + id, "NewAlbum", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=400, resizable=no");	
}

function addPhoto(id){
 window.open("photo_add.php?aid=" + id, "NewPicture", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=400, resizable=no");	
}

function addVideo(id){
 window.open("video_add.php?aid=" + id, "NewVideo", "toolbar=no, location=center, status=no, menubar=no, scrollbars=yes, width=650, height=400, resizable=no");	
}

