function CheckForm() {
	var errorMsg = "";
	var errorMsgLong = "";
	
	if (document.NewsForm.Title.value.length < 2 ) {
		errorMsg += "\n\tTitle \t\t\t- Enter the Title of your News Item";
	}
	
	if (document.NewsForm.Description.value.length < 2 ) {
		errorMsg += "\n\tDescription \t\t- Enter a Summary of your News Item";
	}

	if (document.NewsForm.Content.value.length < 10 ) {
		errorMsg += "\n\tContent \t\t\t- Enter your News Item Content";
	}
	
	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;
}