function updatePlayerOnlineStatus() {
	
		$.ajax({
			type : 'POST',
			url : 'frontend/actions/updatePlayerOnlineStatus.php',
			dataType : 'json',
			data: {
				check_submit : '6LkaP'
			},
			success : function(data){
				// success code //			
			},
			error : function(XMLHttpRequest, textStatus, errorThrown) {
				//$("#notifications").text("AJAX error: "+errorThrown);
			}	
		});	
}
