function noEntry(){	fullname = document.contact.user_name.value;	phone = document.contact.user_phone.value;	comments = document.contact.user_comments.value;	if (fullname.length <= 1)	{		alert("You must include your full name.");		document.contact.user_name.focus();		return false;	}		if (phone.length <= 1)	{		alert("You must include your full phone number");		document.contact.user_phone.focus();		return false;	}	if (comments.length <= 1)	{		alert("You must include comments");		document.contact.user_comments.focus();		return false;	}}function noEntry_newsletter(){	username = document.newsletter.user_name.value;	usermail = document.newsletter.user_email.value;		if (username.length <= 1)	{		alert("You must include your full name.");		document.newsletter.user_name.focus();		return false;	}		if (usermail.length <= 1)	{		alert("You must include your email address.");		document.newsletter.user_email.focus();		return false;	}}