//////////////////////////////////////////////////////////////////////////////
////////////         OBJETS FLASH
//////////////////////////////////////////////////////////////////////////////
function Flash(flash,width,height,mesVars)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="'+width+'" height="'+height+'">\n');
    document.write('<param name="movie" value="animations/'+flash+'.swf">\n');
    document.write('<param name="quality" value="High">\n');
    document.write('<param name="wmode" value="transparent">\n');
    document.write('<param name="FlashVars" value="'+mesVars+'">\n');
    document.write('<embed src="animations/'+flash+'.swf" FlashVars="'+mesVars+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" quality="High" wmode="transparent">\n');
    document.write('</object>\n');
}
///////////////////


//////////////////////////////////////////////////////////////////////////////
////////////         SELECTION SECTEUR
//////////////////////////////////////////////////////////////////////////////
function SelectionSecteur(ville,departement){
	document.getElementById("input_ville").value = ville;
	document.getElementById("input_departement").value = departement;
	document.recherche_form.submit();
}
///////////////////


//////////////////////////////////////////////////////////////////////////////
////////////         INFORMATIONS LEGALES
//////////////////////////////////////////////////////////////////////////////
function informations_legales()
{
	if(document.getElementById('informations_legales').innerHTML==""){
		document.getElementById('informations_legales').innerHTML="<iframe src='informations_legales.htm' frameborder=1 width='450px' height='200px'></iframe>";
	}
	else{
		document.getElementById('informations_legales').innerHTML="";
	}
}
///////////////////