var text="<br /> \<br /> \&nbsp;#~/info:&nbsp;&nbsp;Santiago Itzcoatl&nbsp;&nbsp;Ciudad de México 1986&nbsp;&nbsp;&nbsp;Tokio #84-11 C.P.06600 México D.F.&nbsp;&nbsp;&lt; mail@santiagoitzcoatl.net &gt;&nbsp;&nbsp;&nbsp;# ~/else:&nbsp;&nbsp;&nbsp;#";
        
var delay=10;
var currentChar=1;
var destination="console";
var source="stext";
function type()
{
	if (document.getElementById)
	{
		var dest=document.getElementById(destination);
		var src=document.getElementById(source);
		if (dest)// && dest.innerHTML)
		{
			dest.innerHTML=text.substr(0, currentChar);
			currentChar++;
			if (currentChar>text.length)
			{
				currentChar=1;
				setTimeout("type()", 500000);
			}	
			else
			{
				setTimeout("type()", delay);
			}
		}
	}
}

