function colspmenu(id)
{
	 for (var i=1; i <=20; i++)
	 {
			if (i!=id)
			{
				var tabl=document.getElementById("contenu_menu"+i);
				var imgtd=document.getElementById("menu"+i);
				var tabBG=document.getElementById("bg"+i);
				var imgp=document.getElementById("picture"+i);

				if (tabl)
				{
				tabl.style.display="none";
				imgtd.innerHTML ='<img src="images/menug_1.gif"width="11" height="18" alt="">';
				tabBG.bgColor ='596FFF';
				imgp.innerHTML='<img src="images/Picture1.gif"  width="11" height="18" alt="">';
					
				//imgtd.innerHTML ='<img  src="images/plus.gif"  border="0" >';
				//tabBG.background='images/nav_2.PNG';

				}
			}
	 }

	    var tabac=document.getElementById("contenu_menu"+id);
				var imgtd=document.getElementById("menu"+id);
				var tabBG=document.getElementById("bg"+id);
				var imgp=document.getElementById("picture"+id);

				if (tabac.style.display=="inline")
				{
					tabac.style.display="none";
					imgtd.innerHTML ='<img src="images/menug_1.gif"width="11" height="18" alt="">';
					tabBG.bgColor ='596FFF';
					imgp.innerHTML='<img src="images/Picture1.gif"  width="11" height="18" alt="">';
					var tabinitial=document.getElementById("contenu_menu1");
					var imgtdinitial=document.getElementById("menu1");
					var tabBGinitial=document.getElementById("bg1");
					var imgpinitial=document.getElementById("picture1");
					tabinitial.style.display="inline";
				imgtdinitial.innerHTML ='<img src="images/menug_1_vert.jpg" width="11" height="18" alt="">';
				tabBGinitial.bgColor ='00BA00';
				imgpinitial.innerHTML='<img src="images/Picture1_vert.PNG"  width="11" height="18" alt="">';
				
				}
				else
				{
				tabac.style.display="inline";
					imgtd.innerHTML ='<img src="images/menug_1_vert.jpg" width="11" height="18" alt="">';
				tabBG.bgColor ='00BA00';
				imgp.innerHTML='<img src="images/Picture1_vert.PNG"  width="11" height="18" alt="">';
				}

}
function showHideChildCats(sId,targetLink)
	{
	var stat='';
	if(document.getElementById('childCat_'+sId))
	   stat=document.getElementById('childCat_'+sId).style.display;

	if(stat == '')
		{
				if(document.getElementById('childCat_'+sId))
					document.getElementById('childCat_'+sId).style.display='none';
					//document.getElementById('parentCat_'+sId).className='closed_cat';
		}

	if(stat == 'none')
		{
				if(document.getElementById('childCat_'+sId))
					document.getElementById('childCat_'+sId).style.display='';
					//document.getElementById('parentCat_'+sId).className='opened_cat';
		}

	top.window.basefrm.location=targetLink;
}

function submitShowForm(actionType) {
		
	if (actionType == "CONNEXION")
		{
			document.form.action="login.cfm";
		}
	if (actionType == "Deconnexion")
		{
			document.form.action="logout.cfm";
		}

	if (actionType == "MAP")
		{
			document.form.action="map.cfm";
		}


	if (actionType == "indexn")
		{
				document.form.action="indexn.cfm";
		}
	if (actionType == "FORUM")
		{
			document.form.action="http://amoughit/sabForum/default.asp";
		}
	if (actionType == "QFP")
		{
			document.form.action="wcm_index.cfm?id=63";
		}
	if (actionType == "SEARCH")
		{
			document.form.action="recherche.cfm";
		}

	if (actionType == "CONTACT")
		{
			document.form.action="contact/contact.cfm";
		}

	if (actionType == "Accueil")
		{
			document.form.action="accueil.cfm";
		}
   if (actionType == "Agence")
		{
			document.form.action="start.cfm";
		}
   if (actionType == "Actualite")
		{
			document.form.action="actualite.cfm";
		}


	document.form.submit();
}
var fontSize = 11;
var lineHeight = 16;

function setFaceSize()
	{
	lineHeight = fontSize+Math.round(.3*fontSize);
		obj =document.getElementById("contentGenerated");
		obj.style.fontSize = fontSize+"px";
		obj.style.lineHeight = lineHeight+3+"px";
		obj.style.fontfamily="verdana";



	}

function FontLarger()
	{
	if (fontSize < 26) {
	fontSize = fontSize+2;
	setFaceSize();
	}
	}
	
function FontSmaler()
	{
	if (fontSize > 11) {
	fontSize = fontSize-2;
	setFaceSize();
	}
	}
function show(id){
document.getElementById(id).style.display= "";
document.getElementById('P'+id).style.display= "none";
document.getElementById('M'+id).style.display= "";
}

function hide(id){
document.getElementById(id).style.display= "none";
document.getElementById('P'+id).style.display= "";
document.getElementById('M'+id).style.display= "none";
}

function hide_child(id){
	a=document.all;
//for (i=1;i<a.length;i++){
//if (i!=id){
	//b='childCat_'+i;
	//if (b){
//document.getElementById('childCat_'+i).style.display= "none";
	//}}}
}