<JSB> /* * CustomDisplay.jsb 1.0 97/08/28 * * Copyright (c) 1997 Netscape Communications Corporation * * Netscape grants you a non-exclusive, royalty free, license to use, * modify and redistribute this software in source and binary code form, * provided that i) this copyright notice and license appear on all copies of * the software; and ii) Licensee does not utilize the software in a manner * which is disparaging to Netscape. * * This software is provided "AS IS," without a warranty of any kind. * See the CDK License Agreement for additional terms and conditions. */ <JSB_DESCRIPTOR NAME="CustomDisplay" DISPLAYNAME="Circle" ENV="client" VISUAL="CircleVisual"> <JSB_CONSTRUCTOR> /* * The constructor simply writes out an image reference within * the HTML */ function CustomDisplay(params) { document.write( "<img src=images/Circle.gif border=0>"); } </JSB_CONSTRUCTOR> </JSB>