Iam getting this error code ;Line 5, char 45, unterminated string constant code 800A03F7
with the ff script. Please help.
var thisAd = 0;
function rotate() {
var adImages = new Array("images/green.gif",
"images/red.gif","images/gre.gif","images/
apple2.gif");
thisAd++;
if (thisAd == adImages.length) {
thisAd = 0;
}
document.getElementById("adBanner").
src = adImages[thisAd];
setTimeout(rotate, 3 * 1000);
}