function pop(chemin,nom,param){ 
	popupImage = window.open('',nom,param)
	html = '<HTML><HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><IMG SRC="'+chemin+'" BORDER=0></BODY></HEAD></HTML>';
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
}

function map(lat,lng,lieu){
	open('google.php?lat='+lat+'&lng='+lng+'&lieu='+lieu, '',"width=600,height=400");
}

function print(){
	var contenu = document.getElementById('contenuArticle').innerHTML;
	popimprime = window.open('','','resizable=yes, location=no, width=400, height=500, menubar=yes, status=no, scrollbars=yes');
	html = '<html><head><link rel="stylesheet" type="text/css" href="_css_/print.css"/></head><body><div id="printZone">'+contenu+'</div></body></html>';
	popimprime.document.open();
	popimprime.document.write(html);
	popimprime.document.close();
}

function increaseText(){
	var bloc = document.getElementById('contenuArticle');
	var perc = parseInt(bloc.style.fontSize.substr(0,bloc.style.fontSize.length-1));
	bloc.style.fontSize = perc+10+"%";
}

function decreaseText(){
	var bloc = document.getElementById('contenuArticle');
	var perc = parseInt(bloc.style.fontSize.substr(0,bloc.style.fontSize.length-1));
	bloc.style.fontSize = perc-10+"%";
}