/*-----------------------------------------------------------------------------
  [JS - initialisation]
  
  Page : Toutes
  Navigateurs : Tous
  
  1. Initialisation des valeurs globales
  2. Classe pour un objet flash
-----------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
  [1. Initialisation des valeurs globales]
*/

var flashObjectsArray = new Array();

/*-----------------------------------------------------------------------------
  [2. Classe pour un objet flash]
*/

var FlashObject = function(objectId, filePath, width, height, isLoop, isAutoplay, quality, vars){
	this.objectId = "objectid_" + objectId;
	this.filePath = filePath;
	this.width = width;
	this.height = height;
	this.isLoop = isLoop;
	this.isAutoplay = isAutoplay;
	this.quality = quality;
	this.vars = vars
};

