function jsf_testLen(txtFld)
{
	if (txtFld.value.length > 1500)
	{
		alert('Sorry, only 1,500 characters allowed.');
		txtFld.value = txtFld.value.substring(0,1500);
		return true;
	}
	else
		return true;
}
function jsf_visitorTest(frm)
{
	if (frm.txComment.value.length < 2)
	{
		alert('You have not entered a comment.\n\rPlease write something and try again');
		return false;
	}
	else
		return true;
}
function jsf_thankYou()
{
	alert('Thanks for taking the time to tell us of your visit.\n\rWe will read what you have to say and publish it to our site soon.');
}