function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function big_pic(url_photo)
{
	html = '';
	html = html + '<HTML>';
	html = html + '<HEAD>';
	html = html + '<TITLE>Zoom</TITLE>';
	html = html + '</HEAD>';
	html = html + '<BODY LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">';
	html = html + '<CENTER>';
	html = html + '<A HREF="#" onClick="window.close();" TITLE="Click to close pop-up">';
	html = html + '<IMG SRC="'+url_photo+'" BORDER="0" NAME="big_pic" onLoad="window.resizeTo(document.big_pic.width+14,document.big_pic.height+32); window.moveTo((screen.width-document.big_pic.width)/2,(screen.height-document.big_pic.height)/2);">';
	html = html + '</A>';
	html = html + '</CENTER>';
	html = html + '</BODY>';
	html = html + '</HTML>';

	popupImage = window.open('','big_pic','toolbar=0, location=0, directories=0, menuBar=0, scrollbars=0, resizable=1');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.focus();
	popupImage.document.close()
};

function makevisible(cur,which){
if (which==0) cur.filters.alpha.opacity=100
else cur.filters.alpha.opacity=40 }

//var opacite = 40;	// Taux d'opacité entre 0 (invisible) et 100
//
//function incOpa(element){ 
//	objet = element;
//	intervalle = setInterval("progressifChange(objet,100,true)",50); 
//} 
//
//function decOpa(element){ 
//	objet = element;
//	intervalle = setInterval("progressifChange(objet,opacite,false)",50); 
//} 
//
//function progressifChange(image,maxOpa,sens){
//	if(sens){
//		// On augmente l'opacité
//		if (image.filters.alpha.opacity<maxOpa) 
//			image.filters.alpha.opacity+=5; 
//		else if (window.intervalle) 
//			clearInterval(intervalle);
//	}else{
//		// On diminue l'opacité
//		if (image.filters.alpha.opacity>maxOpa) 
//			image.filters.alpha.opacity-=5; 
//		else if (window.intervalle) 
//			clearInterval(intervalle); 
//	}
//}


