function typeWord(word)
{
	// change "banner" to the ID of the object you want to insert the text into. 
	if (document.all)  // IE browsers
	{
		banner.innerHTML = word;
	}
	else
	{
 		document.getElementById('banner').innerHTML += word[0];
 		newWord = word.substring(1,word.length);
 		if (newWord.length > 0)
 		{	
 			setTimeout('typeWord(newWord)', 50);
 		}
 	}
}
