
var taille=12;

function diminue(z){
var elem = document.getElementById(z);

if(taille>12){

taille=taille-1;
pixel=taille+"px";
elem.style.fontSize = pixel;
}

}

function augmente(z){
var elem = document.getElementById(z);

if(taille<16){
taille++;
pixel=taille+"px";
elem.style.fontSize = pixel;
}
}

function PopupImage(img,comment) {
titre="Zoom";
w=open("",'image','width=800,height=600,toolbar=no,scrollbars=yes,resizable=yes');
w.document.write("<HTML><HEAD><TITLE>Impression en cours...</TITLE><link type='text/css' rel='stylesheet' href='/fr/elements/elem_111.css'></HEAD>");
w.document.write("<BODY leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<br><div class='contenu'>"+comment+"</div>");
w.document.write("</BODY></HTML>");
w.document.write("<SCRIPT language='javascript'>if (typeof(window.print) != 'undefined') { window.print(); }</"+"SCRIPT>");
w.document.close();
}


function imprime(y){
var elemm = document.getElementById(y);

contenu=elemm.innerHTML;

}

function rollover_tjs(nom,src) {	
	// nom est le nom de l'image
	//	Dans cet exemple, nom = lesmiley
	// src est l'adresse du fichier d'image
	document.images[nom].src=src;
}

function load() {
	if (document.images) {
		this.length=load.arguments.length;
		for (var i=0;i<this.length;i++) {
			this[i+1]=new Image();
			this[i+1].src=load.arguments[i];
		}
	}
}
// Cette fonction charge dans le cache toutes les images passées en paramètre
function preload() {
	var temp=new load("/multimedia/images/img_traitees/2005/11/couverture1_vignette.jpg","/multimedia/images/img_traitees/2005/11/couverture1_big.jpg")
}

preload()