Window Image Popup Test Page
Click thumbnails for auto sizing popup
window of full size image.

Image Popup Object #1
window title set to "myWin #1"

Image Popup Object #2
window title set to "myWin #2"
window margin set to 20 pixels

Image Popup Object #3
window title set to "myWin #3"
window margin set to 20 pixels
window background image included
Try out your own settings here...

image URL

Title

Margin

Background Color

Background Image


How to compute window chrome dimensions
IE6
1) get clientWidth & clientHeight
2) resize window with resizeTo(200,200)
3) get clientWidth & clientHeight once again
4) difference values before and after resizeTo
NN4
1) get innerWidth & innerHeight
2) resize window with resizeTo(200,200)
3) get innerWidth & innerHeight once again
4) difference values before and after resizeTo
NN6 & OP7
1) get outerWidth & outerHeight
2) get innerWidth & innerHeight
3) difference innner from outer values