    $(document).ready(function() {
        var refreshId = setInterval(function() {
			// update the count of unread messages to popup div
			var updtmsg = $.ajax({url: "../CheckOnline.asp", async: false}).responseText;
        }, 5000);
	});

