var FlashObject = function(swf, id, w, h, disableCache, ver, c) {
	this.swf = swf;
	if (disableCache) {
		var now = new Date();
		this.swf += '?$_dt=' + now.getTime();
	}
	this.id = id;
	this.width = w;
	this.height = h;
	this.version = ver || 6;
	this.align = "middle";
	this.params = new Object();
	this.variables = new Object();
	this.redirect = "";
	this.sq = document.location.search.split("?")[1] || "";
	this.altTxt = "<div style=\"width:auto;background-color:lightyellow;padding:3px;\">Voc&ecirc; n&atilde;o tem os recursos necess&aacute;rios para visualizar certas se&ccedil;&otilde;es deste site.<br>Para ter acesso a esses recursos, <strong><a href=\"http:\/\/www.macromedia.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" target=\"_blank\">fa&ccedil;a o download gratuito do Macromedia Flash Player<\/a><\/strong>.<\/div>";
	this.bypassTxt = "<p><a href='?detectflash=false&"+ this.sq +"'>Clique aqui se você já possuir a versão "+ this.version +" do Flash Player instalada</a>.</p>";
	if (c) 
		this.color = this.addParam('bgcolor', c);
	this.addParam('quality', 'best');
	this.doDetect = getQueryParamValue('detectflash');
};
	
var FOP = FlashObject.prototype;
FOP.addParam = function(name, value) { this.params[name] = value; };

FOP.getParams = function() { return this.params; };

FOP.getParam = function(name) { return this.params[name]; };
FOP.addVariable = function(name, value) { this.variables[name] = value; };
FOP.getVariable = function(name) { return this.variables[name]; };
FOP.getVariables = function() { return this.variables; };
FOP.getParamTags = function() {
	var paramTags = "";
	for (var param in this.getParams()) {
		paramTags += '<param name="' + param + '" value="' + this.getParam(param) + '" />';
	};
	return (paramTags == "") ? false:paramTags;
};

FOP.getHTML = function() {
	var flashHTML = "";
	if (navigator.plugins && navigator.mimeTypes.length) { 
		flashHTML += '<embed type="application/x-shockwave-flash" src="' + this.swf + '" width="' + this.width + '" height="' + this.height + '" id="' + this.id + '" align="' + this.align + '"';
		
		for (var param in this.getParams()) {
			flashHTML += ' ' + param + '="' + this.getParam(param) + '"';
		};
		
		if (this.getVariablePairs()) {
			flashHTML += ' flashVars="' + this.getVariablePairs() + '"';
		};
		flashHTML += ' menu="false"></embed>';
	} 
	else { 
		flashHTML += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + this.width + '" height="' + this.height + '" id="' + this.id + '" align="' + this.align + '">';
		flashHTML += '<param name="menu" value="false" />';
		flashHTML += '<param name="movie" value="' + this.swf + '" />';
		if (this.getParamTags()) {
			flashHTML += this.getParamTags();
		};
		if (this.getVariablePairs() != null) {
			flashHTML += '<param name="flashVars" value="' + this.getVariablePairs() + '" />';
		};
		flashHTML += '</object>';
	};
	return flashHTML;
};

FOP.getVariablePairs = function() {
	var variablePairs = new Array();
	for (var name in this.getVariables()) { 
		variablePairs.push(name + "=" + escape(this.getVariable(name))); 
	};
	return (variablePairs.length > 0) ? variablePairs.join("&") : false;
};

FOP.write = function(elementId) {
	if(detectFlash(this.version) || this.doDetect=='false') {
		if (elementId) {
			if(!document.getElementById(elementId)) {
				alert('The <DIV> "' + elementId + '" not fount.\nCan not write FlashObject!');
				return;
			};
			
			document.getElementById(elementId).innerHTML = this.getHTML();
		} 
		else {
			document.write(this.getHTML());
		};
	} 
	else {
		if (this.redirect != "") {
			document.location.replace(this.redirect);
		} 
		else 
		if (this.altTxt && !elementId) {
			if (elementId) {
				document.getElementById(elementId).innerHTML = this.altTxt +""+ this.bypassTxt;
			} 
			else {
				document.write(this.altTxt +""+ this.bypassTxt);
			};
		};
	};
};

function getFlashVersion() {
	var flashversion = 0;
	if (navigator.plugins && navigator.mimeTypes.length) {
		var x = navigator.plugins["Shockwave Flash"];
		if(x && x.description) {
			var y = x.description;flashversion = y.charAt(y.indexOf('.')-1);
		};
	} 
	else {
		result = false;
		for(var i = 15; i >= 3 && result != true; i--){
			execScript('on error resume next: result = IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.'+i+'"))','VBScript');
			flashversion = i;
		};
	};
	return flashversion;
};

function detectFlash(ver) {return (getFlashVersion() >= ver) ? true : false; };

function getQueryParamValue(param) {
	var q = document.location.search || document.location.href.split("#")[1];
	if (q) {
		var detectIndex = q.indexOf(param +"=");
		var endIndex = (q.indexOf("&", detectIndex) > -1) ? q.indexOf("&", detectIndex) : q.length;
		if (q.length > 1 && detectIndex > -1) {
			return q.substring(q.indexOf("=", detectIndex)+1, endIndex);
		} 
		else {
			return "";
		};
	};
};

if(Array.prototype.push == null) {
	Array.prototype.push = function(item) { 
		this[this.length] = item; return this.length; 
	};
};