function cat_updater()
{
      $.ajax({
                    method: 'get',
                    url : "/Login/Ajax/Check",
                    dataType : 'json',
                    success: function (data) { 
			if (data['status']==0) window.location.href=BASEURL+"/Login/Timeout"; 
			}
                 });

}

var holdTheInterval = setInterval(cat_updater, 300000);  

