<!--
tNews=new Array();

//&deg;&deg;&deg;&deg;&deg;&deg;&deg;&deg;&deg;&deg;Die News
//tNews.push('<a href="/events/asienforum.php" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>Vocatus Asia Forum on 7 April 2011 in Munich</b></a>');
//tNews.push('<a href="/publications/esomar-award.php" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>Vocatus Wins ESOMAR Award</b></a>');
tNews.push('<a href="/publications/feedback.php?feedback=201102" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>New Feedback: "GAP: The Repair Kit for Conjoint Analyses"</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>');
tNews.push('<a href="/events/business-forum.php" target="_top" onmouseover="this.style.color=\'#ff6600\';" onmouseout="this.style.color=\'#4d4d4d\';"><b>Vocatus Asia Forum: Review and Videos</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 = 32;

//H&ouml;he
tHeight = 1.6;


//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 + 'em;height:' + tHeight + 'em;' +
                       'padding:1px;">' +
                       '<div style="position:absolute;width:' + tWidth + 'em;height:' + tHeight + 'em;'+
                       'overflow:hidden;clip:rect(0px '+tWidth+'em '+tHeight+'px em)">'+
                       '<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;
    }
    }
-->

