// JavaScript Document

function swapLarge(nvalue, tvalue){
	var illustration = document.getElementById("large");
	
	illustration.src = nvalue;
}

function montre(id) {
	document.getElementById(id).style.display='block';
}

function cache(id) {
	document.getElementById(id).style.display='none';
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}