Popup windows
Description Some users will not get popup windows due to JavaScript being turned off.
More To make sure such users still see something, add return false after your JavaScript window.open code. Then put in a standard href link. Users with scripting will get the window, users without will get the href link. If you take out the return false code, users with scripting will get the window and the href link.
Displaying a custom icon in the address bar
Description Some websites show their own icon beside the URL
More Make an icon named favicon.ico you’ll need to find a program to do this that is 16x16 pixels. In the <head&rt; section of the web page, enter <link rel="SHORTCUT ICON" href="favicon.ico">
Compatibality Originally for Internet Explorer only, but now works in most browsers