Edit: This has now been tested and found to work.
You could try, where it has this:
Code:
if (document.getElementById || document.all){
document.write('<div id="trailimageid">');
document.write('</div>');
}
Do it like so:
Code:
if (document.getElementById || document.all){
document.write('<div id="trailimageid" style="visibility:hidden;">');
document.write('</div>');
}
And then in the two places where it has:
Code:
gettrailobj().left=xcoord+"px"
gettrailobj().top=ycoord+"px"
Make them both:
Code:
gettrailobj().left=xcoord+"px"
gettrailobj().top=ycoord+"px"
gettrailobj().visibility='visible'
Bookmarks