var taille=12;

function ChangeFontSizeplus(id, dif) {
var size= taille;
var dif= 2;
size += dif ;
document.getElementById(id).style.fontSize=size+ "px";
taille=size;
}

function PratFontSizeplus(id) {
var size= taille;
var dif= 2;
size += dif ;
document.getElementById(id).style.fontSize=size+ "px";
taille=size;
}

function ChangeFontSizemoins(id, dif) {
var size= taille;
var dif= 2;
size -= dif;
if (size > 9) { document.getElementById(id).style.fontSize =size + "px"; }
taille=size;
}

function PratFontSizemoins(id) {
var size= taille;
var dif= 2;
size -= dif;
if (size > 9) { document.getElementById(id).style.fontSize =size + "px"; }
taille=size;
}

function printArticle(){
	var fenetre = window.open('./printArticle.php', 'Photo', 'width=600,height=700,,,,scrollbars=yes,resizable=yes,status=yes,toolbar=yes');

	if (window.focus) fenetre.focus();
}

function printActivite(idActivite){
	var fenetre = window.open('./printActivite.php?idActivite=' + idActivite, 'Photo', 'width=600,height=700,,,,scrollbars=yes,resizable=yes,status=yes,toolbar=yes');

	if (window.focus) fenetre.focus();
}

function printPage(idPage){
	var fenetre = window.open('./printPage.php?idPage=' + idPage, 'Photo', 'width=600,height=700,,,,scrollbars=yes,resizable=yes,status=yes,toolbar=yes');

	if (window.focus) fenetre.focus();
}

function printPageS(idPage){
	var fenetre = window.open('./printPageS.php?idPage=' + idPage, 'Photo', 'width=600,height=700,,,,scrollbars=yes,resizable=yes,status=yes,toolbar=yes');

	if (window.focus) fenetre.focus();
}

function Recommander(){
	var fenetre = window.open('/recommander.php', 'Photo', 'width=600,height=700,,,,scrollbars=yes,resizable=yes,status=yes,toolbar=yes');

	if (window.focus) fenetre.focus();
}

function info_w3c(){
	var fenetre = window.open('./infow3c.html', 'Photo', 'width=600,height=300,,,,scrollbars=yes,resizable=yes,status=yes,toolbar=yes');

	if (window.focus) fenetre.focus();
}
