var message;
pos=0;
var i = Math.floor(Math.random()*16);

var slogans=new Array();

slogans=["It's real, it's Wiley Computer Works.",
					  "Wiley Computer Works is the only way to be happy.",
					  "The ideal Wiley Computer Works.",
					  "Wiley Computer Works for champions.",
					  "Wiley Computer Works is good for the nerves.",
					  "If Wiley Computer Works don't have it, you don't need it.",
					  "Good Mornings begin with Wiley Computer Works.",
					  "Wiley Computer Works put the World to sleep.",
					  "No Wiley Computer Works, no kiss.",
					  "Wiley Computer Works for a better future.",
					  "Wiley Computer Works inside you.",
					  "Wiley Computer Works enjoy it.",
					  "Wiley Computer Works - the natural way.",
					  "Everyone should believe in Wiley Computer Works.",
					  "Any time is Wiley Computer Works time.",
					  "Who wouldn't fight for Wiley Computer Works."];
					  
message = slogans[i];
					  
maxlength=message.length+1;


function writemsg()
{
if (pos<maxlength)
	{
	txt=message.substring(pos,0);
	document.forms[0].msgfield.value=txt;
	pos++;
	timer=setTimeout("writemsg()",50);
	}
}
function stoptimer()
{
clearTimeout(timer);
}
