function DR_Window (DR_Page, DR_Width, DR_Height, DR_scrollbars, DR_resizable, DR_toolbar, DR_history) {
     //note whichPage is the html address 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(DR_Page,"DR_Window",'width='+ DR_Width +',height='+ DR_Height +',scrollbars='+ DR_scrollbars +',resizable='+ DR_resizable +',toolbar='+ DR_toolbar +',copyhistory='+ DR_history);
     newWindow.focus()
}
