﻿function checkUser1()
{
    
    $.ajax({
        type: "POST",
        url: $("input.txtHostToURLAppForm").val() + "InmaWebMethodsPage.aspx/IsUserLoggedIn",                
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) {            
            alert("msg d");
        }
    });
}
