> JavaScript (when accessed from a webpage) does not require you do > perform any manual memory management. If by "you" you mean the person writing the JavaScript, that's not really true. For example, if you want to support IE6 you need to be careful with circular references, and understand how to avoid memory leaks when you must use them. -- Charles