
function KeepSessionAlive() {
ourDate = new Date();
document.getElementById('imgKeepAlive').src = '/editor/KeepAlive.aspx?r=' + ourDate.valueOf();
setTimeout('KeepSessionAlive()', 60 * 10 * 1000);
}
window.onload = function () {
setTimeout('KeepSessionAlive()', 60 * 10 * 1000);
}