var couleurOn = "#FAE4A3";
var couleurOff = "#FCF4DD";
var texteOn = "#B14D04";
var texteOff = "#6E2B07";

function rollOver(lien) {
	lien.style.background = couleurOn;
	lien.style.color = texteOn;

}

function rollOut(lien) {
	lien.style.background = couleurOff;
	lien.style.color = texteOff;

}

function ouvrir_popup(lang,img,width,height) 
		{
		if(!width){width=420;}
		if(!height){height=350;}
		
		iwin = window.open("include/popup.php?img="+img+"&lang="+lang, "iwin", "toolbar=no,width=" + width + ",height=" + height + ",directories=no,location=no,status=no,scrollbars=no,resize=no,menubar=no, top=50, left=50");
}
