function CheckForm() {

	var errorMsg = "";
	var errorMsgLong = "";
	
	if ((document.ArticleForm.Title.value.length < 10 ) || (document.ArticleForm.Title.value.length > 100 )) {
		errorMsg += "\n\tTitle \t\t- Give a title between 10-100 characters in length";
	}
	
	if ((document.ArticleForm.Description.value.length < 10 ) || (document.ArticleForm.Description.value.length > 200 )) {
		errorMsg += "\n\tShort Summary \t- Give a short summary between in 10-200 characters in length";
	}

	if (document.ArticleForm.Content.value.length < 100 ) {
		errorMsg += "\n\tContent \t\t- Give your Article Content. Articles must be at least 100 characters in size.";
	}

	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;
}
