<!--
/*(by Mario Cimento 2005)Script per visualizzare una scritta scorrevole *//*richiede js_utils.js*/msg = "        Benvenuti nel sito del   Campionato  FunKart  ";msg += anno_sito;pos = 0;len = 28;end = 0;ripeti = 0;newtext = "";timeout = 100;function ScrollMessage(){/*var newtext = msg.substring(pos, msg.length) + msg.substring(0, pos);*/if ( (pos+len) > msg.length ){end  = msg.length;rest = msg.substring(0, (pos+len-msg.length));}else {end  = pos+len;rest = "";}if (ripeti % 2)newtext = "";else newtext = msg.substring(pos, end) + rest;var div = document.getElementById("scrollaTitolo");div.firstChild.nodeValue = newtext;pos++;if ((pos+len) > msg.length && (ripeti < 8)){pos--;ripeti++;if (ripeti % 2)timeout = 2000;else timeout = 400;}else timeout = 50;if (pos > msg.length){ripeti = 0;pos = 0;}posLayerSet("scrollaTitolo", Math.floor(eval(window_w)/2-400)+window_w_offset, 20);window.setTimeout("ScrollMessage()",timeout);}document.write("<br>");document.write("<table border='0' cellspacing='0' width='100%'>");document.write("  <td align='center' width='100%'>");document.write("    <div align='center' style='");document.write("    font-family: Garamond;");document.write("    font-size: 28pt;");document.write("    font-weight: bold;");document.write("    background: none; position:absolute;left:30;top:0;");document.write("    color: #ffffff;");document.write("    height: 25px;");document.write("    padding: 5px;");document.write("    width:800;'");document.write("    id='scrollaTitolo'>Benvenuti</div>");document.write("  </td>");document.write("</table>");document.write("<br>");
-->
