Hi,
I installed it on localhost and I have this error above the navbar:
Quote:
; } else if (this.aCybs[iCtr].bnrType == "IMAGE") { bannerinfo = bannerinfo + ''+this.aCybs[iCtr].bnrTitle+''; } bannerinfo = bannerinfo + ''; } return bannerinfo; } Cbnr.prototype.start = function() { this.changeCbnr(); var thisCbnrObj = this.obj; setTimeout(thisCbnrObj+".start()", this.aCybs[this.currentCbnr].bnrDuration * 1000); } Cbnr.prototype.changeCbnr = function(){ var oldCbnr=this.currentCbnr; while (this.currentCbnr==oldCbnr) { this.currentCbnr=Math.round((this.aCybs.length-1)*Math.random()); } if (document.getElementById(this.aCybs[oldCbnr].bnrID).style.display=='block') { document.getElementById(this.aCybs[oldCbnr].bnrID).style.display="none"; } document.cbgoto.id.value = this.aCybs[this.currentCbnr].bnrID; document.cbgoto.url.value = this.aCybs[this.currentCbnr].bnrURL; document.getElementById(this.aCybs[this.currentCbnr].bnrID).style.display="block"; }
|