
function getPage(linkid){
	var count = 5;
	countdown = setInterval(function(){
	$("#counter").html('Redirection dans '+count+' sec.');
	if (count == 0) {
		clearInterval(countdown);
		$.ajax({
			"url": "include/ajax.php?action=getPage&link_id="+linkid,
			"type": "GET",
			"success": function(data){
				$('#req_page').html(data);			},
			"error": function(xhr, textStatus, errorThrown){
				$('#req_page').html(xhr.responseText);
			}
		});
	}
	count--;
	}, 1000);
}




