This is an example page for the NewsBox object. Include the newsbox.js code in your application to use a newsbox in your document.

The source code for this page is as follows:

<html> <head> <script language="JavaScript1.2" src="newsbox.js"></script> <script language="JavaScript"> function makeNewsBox() { if (navigator.appVersion.substring(0,1) == "4" && navigator.appName == "Netscape") { myNewsBox = new NewsBox(400,100,200,200,"content.html",-50); } } </script> <body onload="makeNewsBox();" bgcolor="black" text="lightcyan"> <font face="Arial,Helvetica,Sans Serif"> This is an example page for the NewsBox object. Include the newsbox.js code in your application to use a newsbox in your document. </font> </body> </html>