  // hc_Go is sent from php and activates the banner .. but can also stop it here manually,

 var browser=navigator.appName;
 var browserIE = false;

// IE 8 is much slower / but quicker timer may be impossible. 
if (browser=="Microsoft Internet Explorer")
 {var scrollSpeed = 30;browserIE = true;} else {var scrollSpeed = 30;}

 var waitBeforScroll = 0;

 // Opera doesn't do it !
 if (browser.indexOf("Opera") > -1 ) {hc_Go=false;}


  if (hc_Go) {
  css_borders = 1;
	b_0_Height = thumbHeightsfromPHP+(thumb_spacer)+4*css_borders;
	b_1_Top = ((b_0_Height-thumbHeightsfromPHP)/2)-css_borders;
	var htlm_S = "<div id=\"b-0\" style='width:"+bannerWidth+"px;height:"+b_0_Height+"px;'>"+
  "<div id=\"hcBannerText\" onmouseover='showText(true,\"disable\");' onmouseout='disable=false;showText(false,\"enable\");go();'></div>" +
  "<div id=\"b-1\" style='clip: rect(0px "+bannerWidth+"px "+(thumbHeightsfromPHP+2)+"px 0px)'>";

    for (ii =0;ii<numFilesToget;ii++) {
    nameIdArray[ii] = "d_" + ii;
    idArray[ii] = false;
    imgNameIdArray[ii] = "i_" + ii;

    myStyle = 'id=\"' + nameIdArray[ii] + '\" class=\"b-2\"';

    htlm_S += '<div ' + myStyle + '><img id=\"'+ imgNameIdArray[ii] + '\" class=\"b-3\" alt="" ' +
    ' onclick="goToURL('+ii+')"' +
    ' onMouseOver="stop();showText(true,'+ii+');" onMouseOut="go();showText(false,'+ii+');"></div>';
    }

  htlm_S += "</div></div>";

  document.write(htlm_S);

  document.getElementById("b-1").style.top = b_1_Top + "px";

  canStart();

  } else {
  document.write('<br style="clear:both">');
  }
