﻿function CheckRatingForm()
{
	var errorMsg = "";
	if ($("#tbRatingFullName").get(0) != null && $("#tbRatingFullName").val().length == 0)
		errorMsg += _You_must_enter + " " + _Full_name + " !!!\n";
	if ($("#tbRatingEmail").get(0) != null && $("#tbRatingEmail").val().length == 0)
		errorMsg += _You_must_enter + " " + _Email + " !!!\n";
	if ($("#selRatingScore").val().length == "")
		errorMsg += _You_must_enter + " " + _Rating_score + " !!!\n";
	if ($("#tbRatingTitle").val().length == 0)
		errorMsg += _You_must_enter + " " + _Title + " !!!\n";
	if ($("#tbRatingContent").val().length == 0)
		errorMsg += _You_must_enter + " " + _Content + " !!!\n";

	if (errorMsg == "")
		return true;

	alert(errorMsg);
	return false;
}

function RatingError(errorMsg)
{
	alert(errorMsg);
}

function RatingComplate()
{
	alert(_Your_comment_is_post_successful + ".");
	window.location = window.location;
}

