function update()
{	
    $.post("/Includes/Functions/Session_Fix.php", {}, function(data){ $("#Update_Session").html(data);});
	setTimeout('update()', 3000);
}

$(document).ready(
 
function() 
    {
	    update();
    });