// JavaScript Document
 
function affichePhoto(photo){

	
	document.getElementById('photo').innerHTML = '<center><div   style="position:absolute;left:0;top:0;width:100%;height:620px;float:none;z-index:101;overflow:hidden;"><img src="images/design/spacer.gif" style="width:100%;height:100%" alt=""></div><img src="photos/'+ photo +'" style="margin-top:10px" alt=""></center>';
		if(document.getElementById('photo')){
			document.getElementById('photo').style.visibility = 'visible';
		}
		
		var browser=navigator.appName;

		if(browser.indexOf('MSI')){
			
			document.getElementById('photo').style.width = document.body.offsetWidth+10;
			
		}
		
	}
 
function fermerPhoto(){
	
	document.getElementById('photo').style.visibility = 'hidden';
	
}

