	timer=null;
	text="";
	wahl="";
	ll=0;
	ii=0;

		function start (cc)  {
			wahl=cc;
			if (cc == '1' )  {
			start1(" Informationen - Informations - Informations - all about 'gender' - all about 'women' - all about personalities  ++ ");
		} 
	}
		function start1(cc)  {
			text=cc;
			ll=text.length;
			ii=0;
			lauf1();
		}
		function lauf1()  {
			if(wahl != '1')return;
			document.form1.text1.value=text.substring(ii,ll)+" "+text.substring(0,ii);
			ii++;
			if(ii > ll)ii=0;
			timer=setTimeout("lauf1()", 200);
		}
		function stop()  {
			wahl='0';
			if(timer  != null)  {
			clearTimeout(timer);
			timer=null;
		}	
	}

