function RunSwf(chemin,width,height,transparence,img)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="0" 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="'+chemin+'" />\n');
    document.write('<param name="quality" value="High" />\n');
    document.write('<param name="wmode" value="'+transparence+'" />\n');
    document.write('<embed src="'+chemin+'" pluginspage="'+img+'"  width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" name="obj1" quality="High" />\n');
    document.write('</object>\n');
}

function isMobile()
{
	var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));  
    
    if(mobile)  
    	return true;
    else
    	return false;
}

