<!--

 var RealMode=0;
 var RealPlayer6=0;
 var RealPlayer5=0;
 var RealPlayer4=0;
 
 if (navigator.userAgent.indexOf("MSIE")<0) // Netscape Mac et PC
 {
 numPlugins = navigator.plugins.length;
 for (i = 0; i < numPlugins; i++)
 {
 plugin = navigator.plugins[i];
 if (plugin.name.substring(0,10)=="RealPlayer")
 {
 RealMode=1;
 }
 }
 }


 if (navigator.userAgent.indexOf("MSIE")>0 && navigator.userAgent.indexOf("Mac")<0) //IE PC
 {
 document.write('<SCRIPT LANGUAGE=VBScript\> \n');
 document.write('on error resume next \n');
 document.write('RealPlayer6 = (NOT IsNull(CreateObject("rmocx.RealPlayer G2 Control")))\n');
 document.write('RealPlayer5 = (NOT IsNull(CreateObject("RealPlayer.RealPlayer(tm) ActiveX Control (32-bit)")))\n');
 document.write('RealPlayer4 = (NOT IsNull(CreateObject("RealVideo.RealVideo(tm) ActiveX Control (32-bit)")))\n');
 document.write('</SCRIPT\> \n');
 }


 if (navigator.userAgent.indexOf("MSIE")>0 && navigator.userAgent.indexOf("Mac") > 0 && navigator.userAgent.indexOf("MSIE 5")>0) //IE5 mac
 {
 nummt = navigator.mimeTypes.length;
 for (i = 0; i < nummt; i++)
   {
	 mt = navigator.mimeTypes[i];
	 if (mt.description.substring(0,10)=="RealPlayer")
	 {
	 RealMode=1;
	 }
   }

 }
 
 if(!(RealMode || RealPlayer6 || RealPlayer5 || RealPlayer4))
 {
 if(confirm('Vous n\'avez pas le plug-in Real Video pour voir le site il vous faut ce plug-in.\n\nVous voulez le télécharger (gratuit)'))
 	window.open("http://forms.real.com/real/realone/intl/intl_realone.html?dc=215214213&type=fr&lang=fr&src=downloadr,021218_intl_r1choice_fr_fr","popup");
 }

//-->