Hello John,
I think you will have to add the javascript code to your header.txt file
The next code is in your normal pages:
Code: Select all
<script style="font-family: Helvetica,Arial,sans-serif;" language="JavaScript" src="milonic_src.js" type="text/javascript"></script>
<script style="font-family: Helvetica,Arial,sans-serif;" language="JavaScript">
if(ns4)_d.write("<scr"+"ipt language=JavaScript src=mmenuns4.js><\/scr"+"ipt>");
else _d.write("<scr"+"ipt language=JavaScript src=mmenudom.js><\/scr"+"ipt>"); </script>
<script style="font-family: Helvetica,Arial,sans-serif;" language="JavaScript" src="menu_data.js" type="text/javascript"></script><br>
But you will have to change the paths because the gbook.php file is not in the root of your site. New code will look lik
Code: Select all
<script style="font-family: Helvetica,Arial,sans-serif;" language="JavaScript" src="../milonic_src.js" type="text/javascript"></script>
<script style="font-family: Helvetica,Arial,sans-serif;" language="JavaScript">
if(ns4)_d.write("<scr"+"ipt language=JavaScript src=../mmenuns4.js><\/scr"+"ipt>");
else _d.write("<scr"+"ipt language=JavaScript src=../mmenudom.js><\/scr"+"ipt>"); </script>
<script style="font-family: Helvetica,Arial,sans-serif;" language="JavaScript" src="../menu_data.js" type="text/javascript"></script><br>
Maybe you will also have to change menu_data.js
If in gbook page the links are broken you will have to change the paths to the files to absolute paths because gbook.php is not in the root directory.
For example:
Code: Select all
aI("text=What's New;url=/new.html");
aI("text=Guest Book;url=/GBook/gbook.php;");
changed to absolute paths is
Code: Select all
aI("text=What's New;url=http://www.jonmac.nl/new.html");
aI("text=Guest Book;url=http://www.jonmac.nl/GBook/gbook.php;");
Greetings,
Henrie