Here is a snippit of ORIGINAL code:
Code:
if (!imgs.controls_top){
document.write(this.ics? '' : brs);
this.controls();
Change it to this:
Code:
if (!imgs.controls_top){
document.write(this.ics? '' : '');
this.controls();
The 2nd line, get rid of the
brs.
AGAIN, you will need to test.