\n');
}
// Handle all the the FSCommand messages in a Flash movie
function carteFlash_DoFSCommand(command, args) {
var fscommandObj = InternetExplorer ? carteFlash : document.carteFlash;
if(command == "selectDep") {
selectDep(args);
}
}
function selectDep(args) {
if(args.length==1)
args="0"+args
dijit.byId('departement').attr('value',args);
}
dojo.addOnLoad(function(){
/*dojo.connect(dijit.byId('showService'),"onDownloadStart",function(){
//console.log('start');
showDialogInfo('Chargement','Merci de patienter nous chargeons la liste des services');
});*/
dojo.connect(dijit.byId('showService'),"onDownloadEnd",function(){
//console.log('end');
dojo.byId('formSearchPresta').style.display="none";
dojo.byId('imgTop').style.display="none";
dijit.byId('waitPlease').hide();
});
})