<!-- Inizio Occultamento / Hide from old browsers

var newsCount = 0;

function newsScroller(width, height, scrollType, background, speed, content) {
   newsCount++;
   var objName = "News" + newsCount;
   var objWidth = parseInt(width);
   var objHeight = parseInt(height);
   var objScrollType = scrollType;
   var objOffsetX = (objScrollType == 'H' ? parseInt(width) : 0);
   var objOffsetY = (objScrollType == 'V' ? parseInt(height) : 0);
   var objContent = content;
   var objBackground = background;
   var objSpeed = parseInt(speed);
   var objTimerID = -1;

   if (document.getElementById || document.all) {
      document.write('<div id="layer' + objName + '" ' +
	                    'style="position: relative; ' +
                                 'overflow: hidden; ' +
                                 'background-color: ' + objBackground + '; ' +
                                 'width: ' + objWidth + 'px; ' +
                                 'height: ' + objHeight + 'px;" ' +
                          'onMouseOver="pauseNewsScrolling(\'' + objName + '\')" ' +
                          'onMouseOut="restartNewsScrolling(\'' + objName + '\')">');
      document.write('<div id="' + objName + '" ' +
	                    'style="position: absolute; ' +
                                 'left: ' + objOffsetX + 'px; ' +
                                 'top: ' + objOffsetY + 'px; ' +
                                 'height: ' + objHeight + 'px; ' +
								 'overflow: visible; ' +
                                 'background-color: ' + objBackground + '">');
      document.write(objContent);
      document.write('<\/div>');
      document.write('<\/div>');
   } else if (document.layers) {
      document.write('<ilayer name="' + objName + '" ' +
	                         'bgcolor="' + objBackground + '" ' +
                             'width="' + objWidth + '" ' +
                             'height="' + objHeight + '">' + objContent + '<\/ilayer>');
   }

   if (objScrollType == 'V') {
      objTimerID = setInterval('verticalScrollNews("' + objName + '", ' + objOffsetY + ')', speed);
   } else {
      objTimerID = setInterval('horizontalScrollNews("' + objName + '", ' + objOffsetX + ')', speed);
   }
}

function getElement(name) {
   var objElement;
   
   if (document.getElementById) {
      objElement = document.getElementById(name);
   } else if (document.all) {
      objElement = document.all[name];
   } else if (document.layers) {
      objElement = document.layers[name];
   }
   return objElement;
}

function verticalScrollNews(name, offset) {
   var objElement;
   
   objElement = getElement(name);
   if (document.getElementById || document.all) {
      if (parseInt(objElement.style.top) > (objElement.offsetHeight * (-1))) {
         objElement.style.top = parseInt(objElement.style.top) - 1;
      } else {
         objElement.style.top = offset;
      }
   } else if (document.layers) {
      if (parseInt(objElement.top) > (objElement.document.height * (-1))) {
         objElement.top = parseInt(objElement.top) - 1;
      } else {
         objElement.top = offset;
      }
   }
}

function horizontalScrollNews(name, offset) {
   var objElement;
   
   objElement = getElement(name);
   if (document.getElementById || document.all) {
      if (parseInt(objElement.style.left) > (objElement.offsetWidth * (-1))) {
         objElement.style.left = parseInt(objElement.style.left) - 1;
      } else {
         objElement.style.left = offset;
      }
   } else if (document.layers) {
      if (parseInt(objElement.left) > (objElement.document.width * (-1))) {
         objElement.left = parseInt(objElement.left) - 1;
      } else {
         objElement.left = offset;
      }
   }
}

function restartNewsScrolling(name) {
}

function pauseNewsScrolling(name) {
}

// Fine Occultamento / Stop hiding -->
