Sizing your browser window for Internet development
If you have ever designed a web site you know that testing the site with a standard browser size is extremely important, but outside of manually changing your display settings most developers don't know of other ways to do this. I've been using variations of the attached page for years. Just navigate to this page, click on the display and size that you need, and presto, your browser window is the exact size that you need. Prior to IE 7 the size and location would be saved upon closing the browser window, but due to misuses by trojan sites the size and location are no longer saved if the window is adjusted programatically through javascript.
Download the page attachment which has the code. I tried adding a code listing within this post, but Telligent has apparently decided that I am not allowed to use the word javascript within code tags. I'll fix that at a later date when I have some time.
Everyone will probably be interested in the Yahoo! User Interface Library (YUI), in particular the YUI CSS Foundation Library. The library creates a clean slate that is cross-browser complaint. You will need to download the entire library from SourceForge, just pick and choose the pieces that you need. The important parts are CSS Reset, CSS Base, CSS Fonts, and CSS Grids (only needed for CSS page layout). While it doesn't fix the problems that CSS was supposed to solve it does make using CSS a little easier. For page layout I still recommend using tables as they work on all browsers, all the time, while CSS layouts do not.