/* agenda */
function afficheMoisAgenda(typ,ind,sel,tot)
{
for(var i=0; i<tot; i++)
		if (i!=sel)
		{
		var o=document.getElementById('my_month_'+typ+'_'+ind+'_'+i);
			if (o) {o.className=typ+'_agenda_hidden';}
		}
		else
		{
		var o=document.getElementById('my_month_'+typ+'_'+ind+'_'+i);
			if (o) {o.className=typ+'_agenda';}
		}
}
function afficheDivNews(typ,ind,sel,tot)
{
for(var i=0; i<tot; i++)
		if (i!=sel)
		{
		var o=document.getElementById('my_news_'+typ+'_'+ind+'_'+i);
			if (o) {o.className=typ+'_news_hidden';}
		}
		else
		{
		var o=document.getElementById('my_news_'+typ+'_'+ind+'_'+i);
			if (o) {o.className=typ+'_news';}
		}
}


/* galerie photos */
function GalPhotoApplyPicture(text_taille,idmodule,my_src,my_src_big,my_width,my_height,my_legende){
	document.getElementById('my_image_mod_'+idmodule).width=my_width;
	document.getElementById('my_image_mod_'+idmodule).innerHTML="<img width=\""+my_width+"\" src=\""+my_src+"\" title=\"Zoom\" onclick=\"showTooltip('"+my_src_big+"','"+text_taille+"');\" onmouseover=\"this.style.cursor='pointer';\">";
	document.getElementById('my_legende_image_mod_'+idmodule).innerHTML=my_legende;
}

function GalPhotoApplyPictureSans(idmodule,my_src,my_width,my_height,my_legende){
	document.getElementById('my_image_mod_'+idmodule).width=my_width;
	document.getElementById('my_image_mod_'+idmodule).innerHTML="<img width=\""+my_width+"\" src=\""+my_src+"\">";
	document.getElementById('my_legende_image_mod_'+idmodule).innerHTML=my_legende;
}

