Instead of
Code:
document.all.Pic.src = "0" + Start + ".jpg";
you just use
Code:
document.all.Pic.src = "yourImageDirectory/0" + Start + ".jpg";
But...
But that code will *ONLY* work in MSIE. document.all is an obsolete mechanism left over from MSIE 4 days. MSIE 6 (and I think even 5) and beyond all support the modern standard:
Code:
document.getElementById("Pic").src = "yourImageDirectory/0" + Start + ".jpg";
If you see code still using document.all, you can be pretty sure it is ancient history code that should be avoided.