﻿ function CommentSubmit()
    {
        var CommentDescription = document.getElementById("ctl00_cphLeft_comment_CommentDescription").value;
        if(CommentDescription == "")
        {
            alert("Please Enter the Description");
            return false;
        }
        return true;
    }
