// JavaScript Document

		var TimeOut = null;

		var comselect;
		var evt;
		function init()
		{
			for(i=0; i < 34; i ++)
			{
				var comm = document.getElementById(i);
				tooltip2(comm);
			}		
		
		}
		
		function tooltip2(commune)
		{
			comselect=commune;
			
				var strtexte		
				strtexte=user_controle_Carte.AJAX_ToolTipText(commune.id);
				comselect.title= strtexte.value;

		}

	/*	function Affiche_ToolTip(response)
		{
			if(response != null)
			{
				if((response.value != null) && (response.error == null))
				{
					comselect.title= response.value;
				}
				else
				{
					comselect.title='';
				}
			}	
			else
			{
				comselect.title='';
			}	
		}
		*/
		
/*
	 function ShowHelp( strTitre, strIcone, strTexte, ev){
	  //alert("OK");	 
	  var x = (document.all)? event.x  : ev.pageX;
	  var y = (document.all)? event.y  : ev.pageY;
	  TimeOut = setTimeout("ShowHelpBubble('" + strTitre + "', '" + strIcone + "', '" + strTexte + "', " + x + ", " + y + ")", 10 );
	 }
	 
		
	function ShowHelpBubble( strTitre, strIcone, strTexte, X, Y ){
		var Hlp = document.getElementById("Help");
		var strHelp = "<table Id = 'HelpTable' cellspacing = 0 cellpadding = 0 border = 0><TR><TD width='9' height='27'><img src='Images/Bule_HG.gif' border='0' width='10' height='27' alt=''></td><td width='305' height='27'><img src='Images/Bulle_HC.gif' border='0' width='306' height='27' alt=''></td><td width='9' height='27'><img src='Images/Bulle_HD.gif' border='0' width='9' height='27' alt=''></td></tr>";
		
		if( strTitre != "" ) strHelp += "<TR align='left' valign='middle'><TD WIDTH='9' style='background: url(Images/Bulle_CG.gif)'></td><td style='background: #FBFFD9; font: normal  15; font-family: Tahoma' width='304' height='30'><img src='" + strIcone + "' border='0' width='15' height='15' alt=''> <B>" + strTitre + "</B></td><td WIDTH = '9' style='background: url(Images/Bulle_CD.gif)'></td></tr>";
		strHelp += "<TR><TD WIDTH='9' style='background: url(Images/Bulle_CG.gif)'></td><td style='background: #FBFFD9; font-family: Arial; font: 12' width='304'>" + strTexte + "</td><td WIDTH = '9' style='background: url(Images/Bulle_CD.gif)'></td></tr>";
		strHelp += "<TR><TD width='9' height='9'><img src='Images/Bulle_BG.gif' border='0' width='10' height='9' alt=''></td><td width='305' height='9'><img src='Images/Bulle_BC.gif' border='0' width='306' height='9' alt=''></td><td width='9' height='9'><img src='Images/Bulle_BD.gif' border='0' width='9' height='9' alt=''></td></tr></table>";
		
		Hlp.innerHTML = strHelp;
		
		Hlp.style.display = "";
		Hlp.style.left = X - 9;
		Hlp.style.top = Y + 10 + document.documentElement.scrollTop ;
		
		//setOpacity(85);
	}
	
	function setOpacity(intOpac){
		var Hlp = document.getElementById("Help");
		
		intOpac = intOpac + 8;
		Hlp.filters.alpha.opacity = intOpac;
		if( intOpac != 0 && intOpac < 85 ){
			setTimeout("setOpacity(" + intOpac + ")", 5);
		}
	}
*/	
	function HideHelp(){
		var Hlp = document.getElementById("Help");
		if( TimeOut != null ) clearTimeout(TimeOut);
		Hlp.style.display = "none";
		
	//	Hlp.filters.alpha.opacity = 0;
	}

