function WriteActiveX_1()
{
jsStr = "";
jsStr += ("<APPLET code=BBApplet.class width=500 height=400>");
jsStr += ("<PARAM name='background' value='255 255 255'>");
jsStr += ("<PARAM name='backimage' value='background.gif'>");
jsStr += ("<PARAM name='sound' value='on'>");
jsStr += ("<PARAM name='mode' value='3'>");
jsStr += ("<PARAM name='standardtext' value='Hoops!!!'>");
jsStr += ("<PARAM name='hittext' value='Yes! Click the ball to continue.'>");
jsStr += ("<PARAM name='atempttext' value='Hit(s) Shot(s)'>");
jsStr += ("<PARAM name='loadtext' value='Wait, loading images...'>");
jsStr += ("</APPLET>");
document.write(jsStr)
}


