Michael Dubner,
Thanks for your input. I joined this thread because I have an identical programming problem. I have used your method before and it works very well when I apply it to other HTML tags. When I use it for the Param of an Applet, it is just ignored. I'm guessing the way the Params are passed to the Applet, it is ignoring the document.write statement. If any one can verify this, please reply. Where can I get more info about the Applet param? All the documents I find are not very detailed on the subject. Here is some code fragments that show what I want to do and what I have found that doesn't work...
This is an applet from Front Page 97. It is a button with a url attached.This applet works and the url, Jun2000.htm is an active url when the button is clicked.
<applet code="fphover.class" codebase="_fpclass" width="70" height="30">
<param name="url" value="Jun2000.htm" valuetype="ref">
</applet>
This is the same applet with your document.write code applied. The url is ignored. If it would work, I would substitute the Jun2000.htm with a varible as you showed in the example. I want the url to change relative to the month.
<applet code="fphover.class" codebase="_fpclass" width="70" height="30"> <script language="JavaScript">
document.write("<param name=\"url\" value=\"Jun2000.htm\" valuetype=\"ref\">"

;
</script>
</applet>
Do I have something different in my browser that is preventing this to work? Netscape 4.73 and Explorer 5.0 will neither show this is working.
Any one with any ideas?