// JavaScript Document
<!--
var nachricht = " Dr. med Helmut Breun : D-76661 Phillipsburg : Germany : Facharzt für Urologie / Urologue  / Urologiste";
		var pos = 0;
		function schreibmaschine(){
			if(pos == nachricht.length){//fängt immer von vorne an(ansonsten wird nur ein mal ausgeführt)..
				pos=0;
			}
			pos++;
			window.status = nachricht.substr(0,pos);
			setTimeout("schreibmaschine()",200)
		}
// -->
