function CheckForm() {

	var errorMsg = "";
	var errorMsgLong = "";
	
	if (document.MailForm.Subject.value.length < 2) {
		errorMsg += "\n\tSubject \t\t- Enter a Subject";
    } 
	
	if (document.MailForm.Comment.value.length < 2) {
		errorMsg += "\n\tComment \t- Enter your Comment";
    } 
	
	if ((errorMsg != "") || (errorMsgLong != "")){
		msg = "_____________________________________________________________________\n\n";
		msg += "There were problems with the information you submitted\n";
		msg += "_____________________________________________________________________\n\n";
		msg += "Please correct the following fields: -\n";
		
		errorMsg += alert(msg + errorMsg + "\n\n" + errorMsgLong);
		return false;
	}
	

	return true;
}
