|
Firstly, I noticed you have some spaces in image names which are translated into something like: Frames/Tolbert%20Star%20Logo_01.gif. This is not very good practise. Try using all small letters and use underscores instead of spaces. Servers differentiate between capitals and small letters so you will avoid future problems. You should have something like "frames/tolbert_star_logo_01.gif" or "Frames/TolbertStarLogo_01.gif"
Secondly I noticed: src = eval(imageName + "on.src") the on.src call is in "" and that will treat it as the string "on.src" and not call the value for the property src of the object on. Try taking the "" away and just have imageName+on.src
good luck
__________________
I think, therefore I am..... I think.
Last edited by scottfree; 06-23-2006 at 11:06 AM..
|