JS-DUC v1.00 (Freeware)
JavaScript Dynamic Update Composer
Copyright  2005 by Hollmn Digital
-------------------------------------------------------------------------------- 



INTRODUCTION
============
JavaScript provides an easy way of keeping multiple pages dynamically updated.
This can be especially useful, when adding links to multiple pages, or making
changes that are to effect multiple pages.

By creating a single file containing the needed (and updated) information, and
then implementing it into many web pages, all you need to do is change a single
file, to change all the files "linked" to it. 

In other words, you can use JavaScript to update every page on your website
with just one file. To read more about this, read Shelley Lowery's article at:

	http://www.web-source.net/dynamically_update.htm

JS-DUC makes the creation of such JavaScript files very easy. All you have to
do, is insert your source HTML, and then click "Code It". The resulting code
can then be saved.



REQUIREMENTS
============
Minimum requirements:
- Approx. 300 KB Disk space
- Windows 95, 98, ME, XP, NT, 2000 or later



INSTALLATION & REMOVAL
======================
You may place the program anywhere you wish. No installation is required. Just
open the JS-DUC.EXE file to run the program.

This software does not install any additional files or programs, nor are any
values placed in the registry. Therefore, no uninstall program is necessary.
Simply delete the program if you do not wish to use it.



BASIC RULES FOR DYNAMIC UPDATING WITH JAVASCRIPT
================================================
- You can include most HTML and JavaScript
- JavaScript:
    - First line:	<!--
    - Contents:		Begin with " document.writeIn(' " and end with: " '); "
    - Last line:	//--> 
- Each backslash (\) should be preceded with another backslash.
- Each apostrophe (') should be preceded with a backslash.
- You cannot include JavaScript that must access another file
- Do not add extra spaces, eg. at the end of each line
- Name with .JS extension recommended, when saving
- Insert into HTML with the following text:
  <SCRIPT language="JavaScript" src="http://www.yoursite.com/yourfile.js"></SCRIPT>

