View Single Post
Old 03-12-2003, 09:47 AM   PM User | #2
Crash1hd
Regular Coder

 
Join Date: Jul 2002
Location: 51° 03' -78" N -114° 05' 72" W
Posts: 617
Thanks: 0
Thanked 0 Times in 0 Posts
Crash1hd is an unknown quantity at this point
Ok Never mind I figured out a way to make it work! Lol figures isnt it always that way what I did was change the following

Quote:
function changeImages() {
if (document.images && (preloadFlag == true)) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[ changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}
to this

Quote:
function changeImages() {
if (document.images && (preloadFlag == true)) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
changeImages.arguments[i].src = changeImages.arguments[i+1];
}
}
}
removeing the red and then changing the following in the body

Quote:
<A Href="#" OnMouseOver="changeImages(document.Screen, 'Images/Screen-Bar-1_over.gif'); window.status='Services'; return true;"

<A Href="#" OnMouseOver="changeImages('Screen', 'Images/Screen-Bar-1_over.gif'); window.status='Services'; return true;"
and removing the '' around the screen

I dont know why but hey it works!

Now If I can only figure out why
Quote:
onResize="
if(ns||ie||w3) {
location.reload();
}"
doesnt work in opera??? Any thoughts
Crash1hd is offline   Reply With Quote