var locatX
var locatY
var svgdoc
function init_svg() {
if (document.all) {
		svgdoc = svgFile1.getSVGDocument();
	}
	else {
		svgdoc = document.svgplugin.document.embeds[0].getSVGDocument();
	}
}
function ShowTooltip(e)
      {
        var ttrelem, ttrelem, posx, posy;
        ttrelem=svgdoc.getElementById("ttre");
        tttelem=svgdoc.getElementById("ttt");
        bulle=e.target;
		txt=bulle.getAttribute('id');

	//changement opacité sur mouseover
	qui=svgdoc.getElementById(txt);
	qui.setAttribute("style","fill:#FF0000;");

	tttelem.childNodes.item(0).setData(txt);
	ttrelem.setAttribute("width",tttelem.getComputedTextLength()+700); 
	tttelem.setAttribute("style","fill: #000000; font-family:Arial; font-size: 3500; visibility: visible");
      ttrelem.setAttribute("style","fill: #FFFFFF; stroke: #000000; stroke-width: 0.5px; visibility: visible");
      
}


      function HideTooltip(e)
      {
        var ttrelem, ttrelem;
        ttrelem=svgdoc.getElementById("ttre");
        tttelem=svgdoc.getElementById("ttt");
        ttrelem.setAttribute("style","visibility: hidden");
        tttelem.setAttribute("style","visibility: hidden");
	    
	bulle=e.target;
	txt=bulle.getAttribute('id');

	//changement opacité sur mouseover
	qui=svgdoc.getElementById(txt);
	qui.setAttribute("style","fill:#EEEEEE;");

	}

function cherche(e)
{
window.location.href("http://www.calvados-strategie.com/fr/calvados/liste_locaux.php?epci="+e);
}
function cherche_com(e)
{
window.location.href("http://www.calvados-strategie.com/fr/calvados/liste_locaux.php?commune="+e);
}