<!--
function checkForm()
	{
	formErrors = "";
	
	if (document.contact.reply_address.value.length < 2)
		{formErrors += "Please enter a reply address\n";}
	if (document.contact.subject.value.length < 2)
		{formErrors += "Please enter a subject\n";}
	if (document.contact.message.value.length < 2)
		{formErrors += "Please enter a message to send\n";}
	
	if (formErrors)
	 	{
		alert(formErrors);
		return false;
		}
	 else 
		{
		setTimeout("document.contact.submit.disabled = true", 0);
		return true;
		}
	}

function errorReplyAddress()
	{
	alert('The reply address you specified seems to be invalid');
	}	
//-->
