function DBR_Window (DBR_Page, DBR_Width, DBR_Height, DBR_scrollbars, DBR_resizable, DBR_toolbar, DBR_history) {
     //note whichPage is the html adDBRess of the page you wish to open, targetwidth and targetheight should be pixel widths and heights, all other values are boolean
     var newWindow = window.open(DBR_Page,"DBR_Window",'width='+ DBR_Width +',height='+ DBR_Height +',scrollbars='+ DBR_scrollbars +',resizable='+ DBR_resizable +',toolbar='+ DBR_toolbar +',copyhistory='+ DBR_history);
     newWindow.focus()
}
