// JavaScript Document


message="Coming soon - KITS FOR SALE!  Contact the designers for details. ";
pos=0;
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);
}

