/*
DETECTION plugin FLASH

*/

var flashinstalled = 0; 
MSDetect = "false";
if (navigator.mimeTypes && navigator.mimeTypes.length) 
{
x = navigator.mimeTypes['application/x-shockwave-flash'];
if (x && x.enabledPlugin) flashinstalled = 2;
else flashinstalled = 1; 
}
else
{
MSDetect = "true";
}

//fonction Qui affiche soit l'image soit le swf
//Denis Lagalle

function imgswf(img, wimg, himg, swf, wswf, hswf) {
 
  
if (flashinstalled == 1) document.write("<img src="+img+" width="+wimg+" height="+himg+">");
else document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width="+wswf+" height="+hswf+"><param name='movie' value="+swf+"><param name=quality value=high><param name=wmode value=transparent><embed src="+swf+" quality=high type='application/x-shockwave-flash' width="+wswf+" height="+hswf+" wmode=transparent></embed></object>");

}



