The only places in HTML and in javascript code where the actual filenames are required are those places where the browser needs to know where to find the file. Things like:
and:
and (the red part) here:
Code:
messages[0] = new Array('red_balloon.gif','Here is a red balloon on a white background',"#FFFFFF");
In areas where it is just text that the user sees, you can type anything you like in those places:
HTML Code:
>Text the User Sees<
and (the green part) here:
Code:
messages[0] = new Array('red_balloon.gif','Here is a red balloon on a white background',"#FFFFFF");
Bookmarks