While this might be a little off topic I thought I would share it as we all
have to see what our stuff looks like on other peoples screens.

I added the following 3 javascript statements to my favorites to enable me
to resize my browser IE or NS to each size to see if I need to do any
formatting.

For 640x480 add:
javascript:void(window.resizeTo( 640 - (screen.width - screen.availWidth) +
8, 480 - (screen.height - screen.availHeight) + 8));

For 800x600 add:
javascript:void(window.resizeTo( 800 - (screen.width - screen.availWidth) +
8, 600 - (screen.height - screen.availHeight) + 8));

For 1024x768 add:
javascript:void(window.resizeTo(1024 - (screen.width - screen.availWidth) +
8, 768 - (screen.height - screen.availHeight) + 8));

Terry


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to