var nachricht ='Wir stellen aus Retro Classics in Stuttgart vom 22.-25.M&auml;rz Halle 1 Schwerpunkt Porsche 356';
var verzoegerung=150  
var timerId='';

function writeMarquee(){
	document.write('<marquee scrollamount="2" scrolldelay="50">'+nachricht+'</marquee>');

}

function ticker() {
	document.frm.ticker.value=nachricht;
	nachricht=nachricht.substring (1, nachricht.length) + nachricht.substring (0, 1);
	timerId=setTimeout("ticker()", verzoegerung);
} 
