Page is a not externally linkable
BenG - 4:28 pm on Jun 28, 2002 (gmt 0)
}
quickly tried thisfunction flip(name,src) { returned 'img' undefined....
if (navigator.appName == "Microsoft Internet Explorer") {
document.all.wait.style.visibility="visible";
}
else {
document.layers["wait"].visibility = "visible";
}
swapImage='images/clients/'+src
if (document.images){
document.images[name].src = swapImage;
// this onload event isn't working properly, triggers instantly....
waitFor(name)
//clearTimeout(imageTimeout);
}
function waitFor(img){
if(!img.complete){
imgWait=setTimeout('waitFor(img)', 250);
}
else{
showImage()
}
}