﻿$(function() {
    setInterval(KeepSessionAlive, 10 * 1000);
});

function KeepSessionAlive() {
    $.post("/KeepSessionAlive.ashx", null, function() {
//        $("#canvas").append("Ç");
    });
}    
