create hyperlinks to the files.
suggest for the executables you put them in ZIP files and link to the zip
file.
nothing special about doing this.
You can create a "download" button if you wish in your favourite image
editor.
If you want to use a form button for a download link, in FP 2003 there is a
behaviour to make a hyperlink from a form button, or try this code (does the
samething as the FP2003 behaviour)
This came from
http://javascript.internet.com
<!-- TWO STEPS TO INSTALL BUTTON LINK:
1. Copy the coding into the HEAD of your HTML document
2. Add the last code into the BODY of your HTML document -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Sven David Hildebrandt (
[email protected]) -->
<!-- Web Site:
http://home.hia.no/~sdhild99 -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!!
http://javascript.internet.com -->
<!-- Begin
function goToURL() { window.location = "<<site>>"; }
// End -->
</script>
</HEAD>
<!-- STEP TWO: Copy this code into the BODY of your HTML document -->
<BODY>
<form>
<input type=button value="New JavaScripts" onClick="goToURL()">
</form>