﻿// Keep asp.net aession alive

var keepAliveTimeout = 300000;
setInterval('keepAlive()',keepAliveTimeout);

function keepAlive()
{
    //alert("KeepAlive");
    AjaxQueue.push(jsWebRoot + 'ajax/keepAlive.aspx', {onSucess: ajaxResponse, onfailure: ajaxResponse}); 
}

function ajaxResponse()
{
    // do nothing
}