// V1.0 du 17/09/07 par pat ajout du script replacer un div par flash

// V1.0 du 29/05/07 par pat ajout du script flash

// V1.0 du 06/09/04 par jfc

// variables globales d'environnement
var MAC = (navigator.userAgent.indexOf('Mac') >= 0);
var IE = NS4 = NS5 = false;
if (document.all) 
	{IE = true;}
else if (document.layers)
	{NS4 = true;}
else
	{NS5 = true;}
	// Langue navigateur
if (IE)
	{LgNav = navigator.userLanguage;}
else
	{
	LgNav = navigator.language;
	tab = LgNav.split("-");
	LgNav = tab[0];
	}

// langue primaire (français ou anglais) pour les messages d'erreur
var FR = EN = false;
if (window.location.pathname.indexOf('/fr/') >= 0)
	{FR = true;}
else if (window.location.pathname.indexOf('/en/') >= 0)
	{EN = true;}
else if (window.location.pathname.indexOf('/nl/') >= 0)
	{EN = true;}
else if (window.location.pathname.indexOf('/it/') >= 0)
	{EN = true;}
else if (window.location.pathname.indexOf('/es/') >= 0)
	{EN = true;}
else if (window.location.pathname.indexOf('/de/') >= 0)
	{EN = true;}
else
	{FR = true;}


function redim_fen(type_fen, largeur, hauteur, marge_gauche, marge_haut)
	{
	// formats habituels 640x480, 800x600, 1024x768, 1280x1024
	// types proposés F=full screen, C=centré, A=adapté
//alert(type_fen + " ; " + largeur + " ; " + hauteur + " ; " + marge_gauche + " ; " + marge_haut);
	// Adaptation de la taille de la fenêtre au format spécifié...mais action réalisée que si nécessaire
	if (type_fen == "A")
		{
		if (isNaN(largeur) || isNaN(hauteur)) {return;}
		if (IE) 
			{
			var redim = false;
			if ((document.body.clientWidth+25) < largeur) {redim = true;}
			if ((document.body.clientHeight+135) < hauteur) {redim = true;}
			if (redim) {window.resizeTo(largeur, hauteur);}
			}
		else
			{
			if (window.outerWidth < largeur) window.outerWidth = largeur;
			if (window.outerHeight < hauteur) window.outerHeight = hauteur;
			}
		return;
		}
	// mise au format plein écran
	if ((type_fen == "F") || (largeur > screen.availWidth) || (hauteur > screen.availHeight))
		{
		window.moveTo(0,0);
		if (IE) 
			{window.resizeTo(screen.availWidth, screen.availHeight);}
		else 
			{
			window.outerHeight = screen.availHeight;
			window.outerWidth = screen.availWidth;
			}
		return;
		}
	//  Mise à la dimension largeur, hauteur
	if (isNaN(largeur) || isNaN(hauteur)) {return;}
	if (largeur > screen.availWidth) {largeur = screen.availWidth;}
	if (hauteur > screen.availHeight) {hauteur = screen.availHeight;}
	if (IE) 
		{window.resizeTo(largeur, hauteur);}
	else
		{
		window.outerWidth = largeur;
		window.outerHeight = hauteur;
		}
	//  positionnement de la fenêtre
	if (type_fen == "C")
		{
		if (isNaN(largeur) || isNaN(hauteur)) {return;}
		marge_gauche = (screen.availWidth - largeur) / 2;
		marge_haut = (screen.availHeight - hauteur) / 2;
		}
	if (isNaN(marge_gauche) || isNaN(marge_haut)) {return;}
	if (marge_gauche < 0) {marge_gauche = 0;}
	if (marge_haut < 0) {marge_haut = 0;}
	window.moveTo(marge_gauche, marge_haut);
	}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function imprimer()
	{
	if (MAC)
		{
		if (FR) alert("Cette fonction n'est pas disponible sur MacIntosh,\nutilisez la fonction impression de votre navigateur");
		else alert("Sorry, not possible on MacIntosh,\nplease use the print button of your browser");
		}
	else {self.print();}
	}

function ferme()
	{
	window.close();
	}
	
function retour_site(url_cible)
	{
	window.opener.document.location = url_cible;
	window.opener.focus();
	window.close();
	}

function TailleAuto()
	// pour ajuster la taille d'une fenetre en gardant la fonction site
	// rajouter ?w=XXX&h=XXX
	// ex : javascript:site('my_pop.htm?w=700&h=300','pop_640')
	// a rajouter dans la balise body de la pop up ONLOAD="javascript:TailleAuto();"
	{
	origine = window.location.search;
	infos_recues = origine.substring(1, origine.length);
		
	tab = infos_recues.split("&");
	width = tab[0];
	height = tab[1];
	
	tab = width.split("=");
	width = tab[1];
	
	tab = height.split("=");
	height = tab[1];
	
	self.resizeTo(width, height)
	//fenetre.focus();
	}

function site(ref_url, fen_nom)
	{
	if (fen_nom == 'pdf_640') {fen_param = 'width=640,height=480,left=10,top=10,toolbar=1,menubar=0,directories=0,scrollbars=1,status=1,location=0,resizable=1,copyhistory=0';}
	else if (fen_nom == 'pop_320') {fen_param = 'width=320,height=400,left=10,top=10,toolbar=0,menubar=0,directories=0,scrollbars=1,status=0,location=0,resizable=0,copyhistory=0';}
	else if (fen_nom == 'pop_480') {fen_param = 'width=480,height=440,left=10,top=10,toolbar=0,menubar=0,directories=0,scrollbars=1,status=0,location=0,resizable=0,copyhistory=0';}
	else if (fen_nom == 'pop_640') {fen_param = 'width=640,height=400,left=10,top=10,toolbar=0,menubar=0,directories=0,scrollbars=1,status=0,location=0,resizable=0,copyhistory=0';}
	else if (fen_nom == 'site_800') {fen_param = 'width=800,height=600,left=10,top=10,toolbar=1,menubar=1,directories=1,scrollbars=1,status=1,location=1,resizable=1,copyhistory=1';} 
	else if (fen_nom == 'fen_pubs') {fen_param = 'width=800,height=600,left=10,top=10,toolbar=0,menubar=0,directories=0,scrollbars=1,status=0,location=0,resizable=1,copyhistory=1';} 
	else {fen_param = fen_nom; fen_nom = "fen_specif";}
	fenetre = window.open(ref_url, fen_nom, fen_param);	
	fenetre.focus();
	}






function change_lg(langue)
	{
	racine = "/"; // racine avant la langue
	protocole = window.location.protocol;
	domaine = window.location.host; // domaine + port
	url_page = window.location.pathname;
	infos_cpl = window.location.search;
	if (infos_cpl != "") {infos_cpl = "?" + infos_cpl;}
	ancre = window.location.hash;
	if (ancre != "") {ancre = "#" + ancre;}
	pos_url = 2 + racine.length; // longueur langue (2 car) + longuer racine
	url_sans_langue = url_page.substring(pos_url, url_page.length);
	url_cible = protocole + "//" + domaine + racine + langue + url_sans_langue + infos_cpl + ancre;
//	alert (url_cible);
	document.location.href = url_cible;
	}

function afficheVignette(cheminVignette,cheminMaxi)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+cheminMaxi+'\')"><IMG SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="cliquez pour agrandir"></A>');
	}
	
function afficheMaxi(chemin)
	{
	//alert(chemin);
	i1 = new Image;
	i1.src = chemin;
	if (FR) {message = "cliquez pour fermer la fenêtre";} else {message = "click to close the window";}
	html = '<HTML><HEAD><TITLE></TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>';
	html = html + '<CENTER><A HREF="Javascript:OnClick=window.close()">';
	html = html + '<IMG SRC="' + chemin + '" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)" ALT="' + message + '">';
	html = html + '</A></CENTER></BODY></HTML>';
	popupImage = window.open('','fen','left=10,top=10,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
	popupImage.document.open();
	popupImage.focus();
	popupImage.document.write(html);
	popupImage.document.close()
	};

// resultatVerif : variable globale résultat des vérifications (true/false)
var resultatVerif = false;

// Fonction de test des adresses email
function verif_email(mel)
	{
	resultatVerif = false;
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(mel)) {resultatVerif = true;}
	return resultatVerif;
	}

/*****************************************************************************
* BackToTheHtml Command
*///**************************************************************************
function BackToTheHtml(node)
{
	if(node == null)
		this.node = document; 
	else
		this.node = node; 
};
BackToTheHtml.prototype.node = null;

BackToTheHtml.prototype.execute = function()
{
	this.activateObject();
}

BackToTheHtml.prototype.activateObject = function(domObject)
{
	var aDomObject = this.node.getElementsByTagName('object');
	var activationObject;
	for(var i=0; i<aDomObject.length; i++)
		if
		(
			aDomObject[i].getAttributeNode('BackToTheHtml') == null
			&&
			(activationObject = this.getActivationObject(aDomObject[i])) != null
		)
			activationObject.execute();
};

BackToTheHtml.prototype.getActivationObject = function(domObject)
{
	var classid = domObject.classid.toUpperCase().substr('clsid:'.length);
	var mimeType = domObject.type.toLowerCase();

	switch(true)
	{
		case 
			classid == 'D27CDB6E-AE6D-11CF-96B8-444553540000' 
			||
			mimeType == 'application/x-shockwave-flash'
		:
			return new ActivateObjectFlash(domObject);

		default :
			return null;
	}
};

BackToTheHtml.uniqueID = function(prefix)
{
	var sPrefix;
	if(prefix == null)
		sPrefix = 'uniqueId';
	else
		sPrefix = prefix;
		
	var i=0;
	while(document.getElementById(sPrefix + (i++)))
		;
	return sPrefix + (i-1);
};

BackToTheHtml.isParentOf = function(parent,child)
{
	var found = false;
	for(var i=0; i<parent.childNodes.length; i++)
		if(parent.childNodes[i] == child)
			return true;
		else
			found = arguments.callee(parent.childNodes[i],child);

	return found;
}

/*****************************************************************************
* ActivateObject Command
*///**************************************************************************
function ActivateObject(domObject)
{
	this.domObject = domObject;
}

ActivateObject.prototype.domObject = null;
ActivateObject.prototype.classid = null;
ActivateObject.prototype.aHtmlAttribute = ['accessKey','align','alt','archive','border','code','codeBase','codeType','declare','dir','height','hideFocus','hspace','lang','language','name','standby','tabIndex','title','useMap','vspace','width'];
ActivateObject.prototype.aObjectProperty = null;

ActivateObject.prototype.execute = function()
{
	this.xndObjectId = BackToTheHtml.uniqueID();
	this.setTextHtml();
	this.writeObject();

	this.xndObject = document.getElementById(this.xndObjectId);
	this.setSpecialProperties();
	this.removeOriginalObject();
}

ActivateObject.prototype.setTextHtml = function()
{
	var str = '';
	str += '<object BackToTheHtml ' + '\n';
	str += ' classid="clsid:' + this.classid + '" ' + '\n';

	//Add HTML attributes to the <object> tag
	for(var i=0; i<this.aHtmlAttribute.length; i++)
	{
		var name = this.aHtmlAttribute[i];
		if(typeof this.domObject[name] != 'undefined' && this.domObject[name].toString() != '')
			str += '\t' + name + '="' + this.domObject[name].toString() + '" ' + '\n';
	}

	str += 'id="' + this.xndObjectId + '" ' + '\n';
	str += '>';

	for(var i=0; i<this.aObjectProperty.length; i++)
	{
		var name = this.aObjectProperty[i];
		if(typeof this.domObject[name] != 'undefined' && this.domObject[name].toString() != '' )
			str += '\t<param name="' + name + '" value="' + this.domObject[name].toString() + '"></param>' + '\n';
	}
	str += '</object>';

	this.textHtml = str;
};

ActivateObject.prototype.writeObject = function()
{
	this.domObject.insertAdjacentHTML("afterEnd",this.textHtml);
};

ActivateObject.prototype.setSpecialProperties = function()
{
	if(typeof this.domObject.className != 'undefined' && this.domObject.className.toString() != '')
		this.xndObject.className = this.domObject.className

	if(typeof this.domObject.style.cssText != 'undefined' && this.domObject.style.cssText.toString() != '')
		this.xndObject.style.cssText = this.domObject.style.cssText;

	if(typeof this.domObject.SWRemote != 'undefined' && this.domObject.SWRemote.toString() != '')
		this.xndObject.FlashVars = this.domObject.SWRemote;

	if(typeof this.domObject.codebase == 'undefined' || this.domObject.codebase.toString() == '')
		this.xndObject.codebase = 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0';

	if(typeof this.domObject.id != 'undefined' && this.domObject.id.toString() != '')
		this.xndObject.id = this.domObject.id;

};

ActivateObject.prototype.removeOriginalObject = function()
{
	this.domObject.parentNode.removeChild(this.domObject);
};

/*****************************************************************************
* ActivateObjectFlash Command
*///**************************************************************************
function ActivateObjectFlash(domObject)
{
	ActivateObject.call(this,domObject);
}
ActivateObjectFlash.prototype = new ActivateObject;
ActivateObjectFlash.prototype.aObjectProperty = ['FrameNum','Playing','Quality','Quality2','Scalemode','Scale','AlignMode','SAlign','BackgroundColor','BGColor','Loop','Movie','WMode','Base','DeviceFont','EmbedMovie','SWRemote','FlashVars','AllowScriptAccess'];
ActivateObjectFlash.prototype.classid = 'D27CDB6E-AE6D-11CF-96B8-444553540000';


/*****************************************************************************
* Script initialisation
*///**************************************************************************
if(typeof ActiveXObject != 'undefined' && typeof Function.call != 'undefined')
{
	var styleId = BackToTheHtml.uniqueID();
	document.write('<style id="' + styleId + '" ></style>');
	var domStyle = document.getElementById(styleId);

	var isHead = false;
	var aHead = document.getElementsByTagName('head');
	for(var i=0; i<aHead.length; i++)
		if(BackToTheHtml.isParentOf(aHead[i],domStyle))
			isHead = true;

	if(isHead)
	{
		document.write('<style type="text/css">OBJECT{visibility:hidden;}</style>');
		document.onreadystatechange = function()
		{
			if(document.readyState == 'complete')
			{
				new BackToTheHtml().execute();
				document.styleSheets[document.styleSheets.length-1].addRule("OBJECT","visibility:visible;");
				//alert('head');
				//alert(document.body.innerHTML);
			}
		}
	}
	else
	{
		new BackToTheHtml().execute();
		//alert('body');
		//alert(document.body.innerHTML);
	}
	
	domStyle.parentNode.removeChild(domStyle);
}


//-->

/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){this.setAttribute("doExpressInstall",true);this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));document.title=document.title.slice(0,47)+" - Flash Player Installation";this.addVariable("MMdoctitle",document.title);}}if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){var n=(typeof _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[2]):0;};deconcept.PlayerVersion.prototype.versionIsValid=function(fv){if(this.major<fv.major){return false;}if(this.major>fv.major){return true;}if(this.minor<fv.minor){return false;}if(this.minor>fv.minor){return true;}if(this.rev<fv.rev){return false;}return true;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;