<!-- Begin
var delay=20;
var nextm=0;
var msg=new Array
(
       	'- TOP TAUCHSAFARI - MS DUNJA - SOUTH SINAI 2010 -',
		'- 02. SEPTEMBER 2010 bis 09. SEPTEMBER 2010 -',
		'- NOCH 9 FREIE PLÄTZE -'
);

function start_ticker()
{
        do_ticker(msg[0], 0, 1);
}


function do_ticker(text, pos, dir)
{
        var out='<font face="Times New Roman"; font size=+1; font color=#FFFF00>\
        [&nbsp;'+text.substring(0, pos)+'&nbsp;]</font>';

        if(navigator.appName=="Netscape")
                with(document.ticker.document)
                {
                        open(); write(out); close();
                }
        else
                ticker.innerHTML=out;

        pos+=dir;

        if(pos>text.length)
        {
        setTimeout('do_ticker("'+text+'",'+pos+','+(-dir)+')', delay*200);
        } else
        {
                if(pos<0)
                {
                        if(++nextm>=msg.length)
                                nextm=0;
                        text=msg[nextm];
                        dir=-dir;
                }

                setTimeout('do_ticker("'+text+'",'+pos+','+dir+')', delay);
        }
}
//  End -->