<!--
tNews=new Array();

//&deg;&deg;&deg;&deg;&deg;&deg;&deg;&deg;&deg;&deg;Die News
tNews.push('<a href="/publications/market-research-award.php" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>L\'TUR and Vocatus Win Market Research Award</b></a>');
tNews.push('<a href="/publications/specialist-articles.php#fullspeedtogreen" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>New Article: "Full Speed to Green" on the Chinese Automotive Industry</b></a>');
tNews.push('<a href="/publications/feedback.php?feedback=200802" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>New Feedback: "Customer-centred Pricing Strategy"</b></a>');
tNews.push('<a href="/sales/customer-satisfaction.php" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>Feature: "Customer Satisfaction"</b></a>');
tNews.push('<a href="/customer-service/service-optimisation.php" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>Feature: "Customer Service"</b></a>');

//Delimiter zwischen den einzelnen News
tDelimiter = ' +++ ';

//Interval in ms
tInterval = 28;

//Stop bei mouseover?true:false
tStop = false;

//Falls Leeraum zwischen News...hier Wert erhoehen...minimum:1
tRepeat = 2;

//Rahmen
tBorder = '0px';

//Breite
tWidth = 428;

//H&ouml;he
tHeight = 20;


//Das Aussehen per CSS anpassbar unter Verwendung des Selectors #ticker

/* * * * * * * * * * * * * * * * * * D E R  T I C K E R * * * * * * * * * * * * * * * * * * * * * */
IE  = document.all&&!window.opera;
DOM = document.getElementById&&!IE;

if(DOM||IE)
    {
    var tGo,
        tLoop = true,
        tPos  = startPos,
        tStop = tStop?'onmouseover="clearInterval(tGo)"'+ 'onmouseout="tGo=setInterval(\'DM_ticken()\','+tInterval+')"':'',
        tStop = 'onmouseover="tickerStop()"'+ 'onmouseout="tickerStart()"',
        
        tTxt  = tDelimiter+tNews.join(tDelimiter),
        tNews = tTxt;
        
        for(i = 1; i < tRepeat; ++i)
          {
            tNews+=tTxt;
          }
          
        document.write('<div style="overflow:hidden;border:' + tBorder +
                       ';width:' + tWidth + 'px;height:' + tHeight + 'px;' +
                       'padding:1px;">' +
                       '<div style="position:absolute;width:' + tWidth + 'px;height:' + tHeight + 'px;'+
                       'overflow:hidden;clip:rect(0px '+tWidth+'px '+tHeight+'px 0px)">'+
                       '<span id="ticker" style="white-space:nowrap;position:relative;"' + tStop + '>' + tNews + 
                       '</span></div></div>');
        
        tObj = IE ? document.all.ticker : document.getElementById('ticker');
    
    function DM_ticken()
      {
        tOffset = tObj.offsetWidth/tRepeat;
        if(Math.abs(tPos) > tOffset)
          {
            tPos=0;
          }
        tObj.style.left=tPos+'px';
        if (tLoop)
        {
          tPos=parseInt(tPos)-1;
          windowParameters.setParam('ticker',tPos);
        }
      }
    
    tGo=setInterval('DM_ticken()',tInterval);
    
    function tickerStop() {
    tLoop = false;
    }
    function tickerStart() {
    tLoop = true;
    }
    }
-->
