			var cookcont1 = "";
			var cookloc1 = "";
			var cooklang1 = "";
			var cookcount1 = "";
			
			function continent(str) {
				var strc = str;
				contloc  = str;
				if(contloc == "northamerica")
					contloc = "North America";	
				if(contloc == "southamerica")
					contloc = "South America";	
				if(contloc == "centralamerica")
					contloc = "Central America";	
				$j("h3.listcontinent span.continent").each(function(){
					if($j(this).text() == ucfirst(contloc)){
						
						c_continent = $j(this).text();
						var continent = $j(this).text().split(" ");
						$j("#ctl00_langpane div.countrylist").hide();
						$j("#ctl00_langpane span.continent").removeClass("strong");
						$j(this).addClass("strong");
						
						if($j("div."+continent[0]+" ul").attr("class") == undefined){
							$j("#ctl00_langpane div.countrylist").hide();
							$j("#ctl00_langpane span.continent").removeClass("strong");
							$j(this).addClass("strong");
							var li = "<ul class=\"country\">";
							var tablist = new Array();
							
							var countrylist = $j("div."+continent[0]+" span.countrylist").text();
							//countrylist = countrylist.substr(1,countrylist.length);
							tablist = countrylist.split(";");
							for(var i=0;i<(tablist.length-1);i++){
								if(tablist[i] != "" && tablist[i] != " "){
									if(i == Math.round((tablist.length-1)/3) || i == (Math.round((tablist.length-1)/3))*2){
										li += "</ul><ul class=\"country\">";
									}
									li += "<li onclick=\"return selectcountry(this);\">"+trim(tablist[i])+"</li>";
								}
							}
							li += "</ul>";
							var ul = "<div class=\"country\">"+li+"</div>";
							$j("div."+continent[0]).empty();
							$j("div."+continent[0]).html(ul);
							$j("div."+continent[0]).show();				
						}
						else
							$j("div."+continent[0]).show();
					
					
					}
				});
			}
			function pays(str) {
				var str = str;
				//alert(str);
				localisation2(ucfirst(str),contloc);
				var contloclist = contloc.split(" ");
				$j("div."+ucfirst(contloclist[0])+" ul li").removeClass("strong");
				$j("div."+ucfirst(contloclist[0])+" ul li").each(function(){
					if($j(this).text() == ucwords(str)){
						$j(this).addClass("strong");
					}
				});
				$j("div.languagebox").scrollTo(300 , { duration: 1000 });
			}

			if (AC_FL_RunContent == 0) {
				alert("Cette page n?cessite le fichier AC_RunActiveContent.js.");
			} else {
				var flash =  AC_FL_RunContent(
					'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
					'width', '440',
					'height', '250',
					'src', 'portaldata/1/Resources/swf/test2',
					'quality', 'high',
					'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
					'align', 'middle',
					'play', 'true',
					'loop', 'true',
					'scale', 'showall',
					'wmode', 'window',
					'devicefont', 'false',
					'id', 'test2',
					'bgcolor', '#ffffff',
					'name', 'test2',
					'menu', 'true',
					'allowFullScreen', 'false',
					'allowScriptAccess','sameDomain',
					'movie', 'portaldata/1/Resources/swf/test2',
					'salign', ''
					); //end AC code
			}
