<!--
// See KB article about changing this dynamic HTML

var hasSubmitted = 0;

function onMaillistSubmit()
{
	if (hasSubmitted == 0)
	{
		document.maillist.submit();
		hasSubmitted = 1;
	}
	else
	{
		alert("You have already subscribed to the mailing list");
	}
}


//-->
