<!--
// Function to validate the form.
function FormValidation(theForm) {
	if (theForm.fullname.value == "") {
		alert("Enter your Contact Name.");
		theForm.fullname.focus();
		return false; }
	if (theForm.email.value == "") {
 		alert("Enter your E-mail Address.");
		theForm.email.focus();
		return false; }
	if (theForm.language.value == "") {
 		alert("Please select a language.");
		theForm.language.focus();
		return false; }
	if (theForm.comments.value == "") {
		alert("Enter your Comments.");
		theForm.comments.focus();
		return false; }
		
	return (true);
}
//-->