function CheckForm() {

	var errorMsg = "";
	var errorMsgLong = "";
	
	if (document.WordForm.Word.value.length < 2 ) {
		errorMsg += "\n\tWord \t\t- Give a Word or Term";
	}
	
	if (document.WordForm.Description.value.length < 10 ) {
		errorMsg += "\n\tDescription \t- Give the Description or Meaning of the Word";
	}

	if ((errorMsg != "") || (errorMsgLong != "")){
		msg = "_____________________________________________________________________\n\n";
		msg += "There are problems with the data you submitted\n";
		msg += "_____________________________________________________________________\n\n";
		msg += "You must fix the following fields: -\n";
		
		errorMsg += alert(msg + errorMsg + "\n\n" + errorMsgLong);
		return false;
	}
	

	return true;
}