didnt work either
Im trying to use a .js file for images and links on some pages that are simular so I just have to change the .js file and this suff would change on all the pages that have document.write(indexheader())
insted of have 2 function indexheader() and function indexmenu()
1 for the logo and 1 for links combine the data so on the page that referances the function () there is only one something like <script>document.write(indexheader());</script>
excample of image path
<img src= images/Logo.gif>
excample of links
"<a href=\"index.php\">Home</a> | " +
"<a href=\"photogallary/venues/venuessplash.php\">Venues</a> | " +
"<a href=\"photogallary\">Gallary</a>";
I dont know but I have other pages that I guess would have to use a differant type of deal because the page is in a differant directory
I would asume that since the paths are differant I have to ref the .js file for this other function venueheader()
excample of image path
<img src=../../../images/Logo.gif>
excample of links
"<a href=\"../../../index.php\">Home</a> | " +
"<a href=\"venuessplash.php\">Venues</a> | " +
"<a href=\"../../index.php\">Gallary</a>";