<html> <head> <title>Expose the Objects</title> </head> <body> <script type="text/javascript"> for (docprop in document) { document.writeln(docprop + "="); eval ("document.writeln(document." + docprop + ")"); document.writeln("<br />"); } </script> </body> </html>