Index: branches/RC/core/admin_templates/js/frame_resizer.js =================================================================== diff -u -N -r9239 -r9983 --- branches/RC/core/admin_templates/js/frame_resizer.js (.../frame_resizer.js) (revision 9239) +++ branches/RC/core/admin_templates/js/frame_resizer.js (.../frame_resizer.js) (revision 9983) @@ -1,10 +1,11 @@ -function FrameResizer($show_title, $hide_title, $frameset, $save_url) { +function FrameResizer($show_title, $hide_title, $frameset, $save_url, open_width) { this.StatusIcon = {0: 'img/list_arrow_desc.gif', 1 : 'img/list_arrow_no.gif'}; this.StatusText = {0: $hide_title, 1 : $show_title}; this.StatusImage = document.getElementById('menu_toggle_img'); this.StatusLink = document.getElementById('menu_toggle_link'); this.Frameset = $frameset; this.SaveURL = $save_url; + this.OpenWidth = open_width ? open_width : 200; this.SubFrameset = $frameset.document.getElementById('sub_frameset'); this.TopFrameset = $frameset.document.getElementById('top_frameset'); @@ -54,7 +55,7 @@ } else { this.TopFrameset.setAttribute('rows', this.Frameset.$top_height + ',*'); - this.SubFrameset.setAttribute('cols', '200,*'); + this.SubFrameset.setAttribute('cols', this.OpenWidth+',*'); this.SetStatus(0); } } \ No newline at end of file