// JavaScript Document
	$(document).ready( function(){

		$("#divCentre a[href^='http']").click( function(){
			window.open($(this).attr("href"));
			return false;
		});
		$("a[href*='ecrire/'], a[href*='page=backend']").click( function(){
			window.open($(this).attr("href"),"",'menubar=no,location=yes,scrollbars=yes,resizable=yes');
			return false;
		});
		if ($.browser.msie && $.browser.version.substr(0,1)=="6") {
		   $(".avisIE6").show("slow");
		}
	});
	
function affiche(id){
	$(id).toggle("fast");
}
function nouvelleFenetre(){
	$("a[href^='http']").click( function(){
			window.open($(this).attr("href"),'','menubar=no,location=yes,scrollbars=yes,resizable=yes');
			return false;
	});
}
function popup(obj){
	window.open($(obj).attr("src"),'','menubar=no,location=yes,scrollbars=yes,resizable=yes');
	return false;
}

