
function visibilite(thingId){
	var targetElement;
	targetElement = document.getElementById(thingId) ;
	if (targetElement.style.display == "none"){
		targetElement.style.display = "" ;
	} else {
	targetElement.style.display = "none" ;
	}
}



    function echanger (id, lien){
    	var urlImg = document.getElementById (id);
    	urlImg.src=lien;
	
		var zoomPhoto = document.getElementById('zoomPhoto');
		zoomPhoto.className="visible"
    }


	function echanger_close(){
		
		var urlImg = document.getElementById ('zoom');
    	urlImg.src='';
		
		var zoomPhoto = document.getElementById('zoomPhoto');
		zoomPhoto.className="invisible"
		
	}



// flash pour ie
function flash(tag) {
	document.write(tag);
}




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


