//OpenBrWindow
function OpenBrWindow(theURL,winName,w,h,features) { //v2.0
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;

    var mywindow=window.open(theURL,winName,'height='+h+',width='+w+',top='+wint+',left='+winl+','+features);
}

function OpenAlbum(form,element,editmode) {
       var url = 'album.php?form='+form;
           url += '&element='+element;
           url += '&editmode='+editmode;

          var w = 710;
          var h = 600;

       OpenBrWindow(url,'album',w,h,'scrollbars=yes,resizable=1,toolbar=no,status=1');
}
