You have edited your copy of jumptop.js incorrectly. Here:
Code:
staticimage.document.write('<a href="../jumptop.js">'+displayed+'</a>')
and here:
Code:
crosslogo.innerHTML='<a href="../jumptop.js">'+displayed+'</a>'
And that's exactly what would happen, at least in some browsers - a dialogue asking if you want to download the jumptop.js file.
Restore those two lines to:
Code:
staticimage.document.write('<a href="'+logolink+'">'+displayed+'</a>')
and:
Code:
crosslogo.innerHTML='<a href="'+logolink+'">'+displayed+'</a>'
respectively.
If you want to edit the look of the link:
[Top]
do that here:
Code:
/***********************************************
* Jump To Top Link Script- © Dynamic Drive (www.dynamicdrive.com)
* Last updated Nov 13th, 03'.
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
//Specify the text to display
var displayed="<nobr><b>[Top]</b></nobr>"
///////////////////////////Do not edit below this line////////////
Bookmarks