﻿function sendKeepSessionAliveRequest(url) {
    var webRequest = new Sys.Net.WebRequest();
    webRequest.set_url(url);
    webRequest.invoke();
}

function doKeepSessionAlive() {
    setInterval("sendKeepSessionAliveRequest('SessionProlonger.aspx')", 600000);
}
