function checkNewsletterSignup()
{
	if(document.getElementById('varchar000').value == '')
	{
		alert('You must fill in the first name field in order to continue.');
		document.getElementById('varchar000').focus();
		return false;
	}
	if(document.getElementById('varchar001').value == '')
	{
		alert('You must fill in the last name field in order to continue.');
		document.getElementById('varchar001').focus();
		return false;
	}
	if(document.getElementById('varchar072').value == '')
	{
		alert('You must fill in the email field in order to continue.');
		document.getElementById('varchar072').focus();
		return false;
	}
	document.getElementById('form_signup').submit();
	return true;
}

function checkContact()
{
	if(document.getElementById('Name').value == '')
	{
		alert('You must fill in the name field in order to continue.');
		document.getElementById('Name').focus();
		return false;
	}
	if(document.getElementById('Email').value == '')
	{
		alert('You must fill in the email field in order to continue.');
		document.getElementById('Email').focus();
		return false;
	}
	if(document.getElementById('Comments').value == '')
	{
		alert('You must fill in the comments field in order to continue.');
		document.getElementById('Comments').focus();
		return false;
	}
	document.getElementById('form_contact').submit();
	return true;
}
