$(document).ready(function() {
	keepAlive();
	window.setInterval(function() {
		keepAlive();
	}, 120000);
});
function keepAlive() {
	$.ajax({
		url: '/_/heartbeat',
		success: function(data) {
			//alert('Load was performed.');
		}
	});
}
