Originally posted by Shadowboss
where can i change the size of the window, so that the whole table fits in it?
the pop-up window size defined in inc_header.asp, you can try change
JavaScript:openWindow
2('pop_icon_legend.asp')
to
JavaScript:openWindow
4('pop_icon_legend.asp')
or 5, 6...
if can't find a suitable one, you also can try add a new
openWindowSmile by yourself. just compare the other openWindow function in this section (inc_header.asp)
i know there is a great script can let user custom the pop-up width/height... but can't search it now.
ok, here. add two lines in about line.261 inc_header.asp
"function openWindowCustom(url, width, height, resizable, scrollbars) {" & vbNewLine & _
" popupWin = window.open(url,'new_page','width='+width+',height='+height+',resizable='+resizable+',scrollbars='+scrollbars+'')" & vbNewLine & _
"}" & vbNewLine & _
"// done hiding -->" & vbNewLine & _
and then specify your custom width/height and change to this
JavaScript:openWindowCustom('pop_icon_legend.asp','550','600','yes','no')<