<!--
   function affiche_flash_kartoo(width, height, path, flashvars) {
	   if (navigator.appName.indexOf("Explorer") > -1) {
		   	if (navigator.appVersion.indexOf("Macintosh") > -1){
				document.writeln("<object type=\"application/x-shockwave-flash\" name=\"kartoo\" width=\""+width+"%\" height=\""+height+"%\" data=\""+path+"?"+flashvars+"\">");
			}
			else {
				document.writeln("<object type=\"application/x-shockwave-flash\" name=\"kartoo\" width=\""+width+"%\" height=\""+height+"%\" data=\""+path+"\">");
			}
	  }
	  else if(navigator.appName.indexOf("Safari")) {
		    	document.writeln("<object type=\"application/x-shockwave-flash\" name=\"kartoo\" width=\"1024\" height=\"768\" data=\""+path+"\">");
	  }
      else{
		  	document.writeln("<object type=\"application/x-shockwave-flash\" name=\"kartoo\" width=\""+width+"%\" height=\""+height+"%\" data=\""+path+"\">");
	  }
      document.writeln("<param name=\"movie\" value=\""+path+"\" />");
      document.writeln("<param name=\"loop\" value=\"false\" />");
      document.writeln("<param name=\"quality\" value=\"best\" />");
      document.writeln("<param name=\"devicefont\" value=\"true\" />");
      document.writeln("<param name=\"bgcolor\" value=\"#067BAC\" />");
      document.writeln("<param name=\"menu\" value=\"false\" />");
      document.writeln("<param name=\"flashvars\" value=\""+flashvars+"\" />");
      document.writeln("</object>");
   }
//-->
