// Scrolling Text

    <!-- Hide the script from old browsers --
    var timerID = null;
    var timerRunning = false;
    var id,pause=0,position=0;
    function ticker() {
      var i,k,msg=" Owner's Perspective Presentation: Major owners who have experienced strong growth and skills challenges discuss owner engagement in mentoring, mobility, scheduling, supervisory training and skills shortages. ";
      k=(207/msg.length)+1;
      for(i=0;i<=k;i++) msg+=" "+msg;
      document.form2.ticker.value=
                    msg.substring(position,position+207);
      if(position++==207) position=0;
      id=setTimeout("ticker()",500); 
    }
    function action() {
      if(!pause) {
        clearTimeout(id);
        pause=10; 
      }
      else {
        ticker();
        pause=0; 
      }
    }
    // --end hiding here -->