﻿// JScript File
function checkloginpage()
{ 
    if  (loggedin==0)
        {
            alert("Please login");
            return false;
        }
     var strcomments=document.getElementById('TxtComments').value;     
     if(strcomments=="")
    
     {
          
     alert("Please enter the comments");
     
        
        return false;
      }
  }

