function registerPopClose() {
	$('#content-js1').fadeOut();
	$('#content-js1').html('');
	$('#content-js2').fadeOut();
	$('#content-js2').html('');
}
function pronostic(pronostic_id) {
	$('#content-js1').attr('style', 'position:fixed;top:0;left:0;width:100%;bottom:0;opacity:0.5;z-index:99;background:#000000;');
	$('#content-js2').attr('style', 'position:fixed;z-index:100;-moz-border-radius:3px;width:720px;height:550px;padding:5px;border:1px solid #666;background:#FFF;display:block;margin:40px 0 0 135px;overflow:auto;');
	$.post('/work/php/pronostics.php', {module: 'pronostic', pronostic_id: pronostic_id}, function(html_content) {
		$('#content-js2').html(html_content);
	});
}
