if(typeof deconcept=="undefined"){var deconcept=new Object();}
if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}
if(typeof deconcept.STSWFObjectUtil=="undefined"){deconcept.STSWFObjectUtil=new Object();}

deconcept.STSWFObject=function(path,id,w,h,version,bg,wmode,quality,xiRedirectUrl,redirectUrl,detectKey){
	if(!document.getElementById){return;}
	this.DETECT_KEY=detectKey?detectKey:"detectflash";
	this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
	this.params=new Object();
	this.variables=new Object();
	this.attributes=new Array();
	if(path){this.setAttribute("swf",path);}
	if(id){this.setAttribute("id",id);}
	if(w){this.setAttribute("width",w);}
	if(h){this.setAttribute("height",this.getAltezza(h));}
	if(version){this.setAttribute("version",new deconcept.PlayerVersion(version.toString().split(".")));}
	this.installedVer=deconcept.STSWFObjectUtil.getPlayerVersion();
	this.addVariable('playerVersion', this.installedVer.major);
	if(bg){this.addParam("bgcolor",bg);}
	if(wmode){this.addParam("wmode",wmode);}
	var q = quality?quality:"high";
	this.addParam("quality",q);
	this.setAttribute("doExpressInstall",false);
	var _d=(xiRedirectUrl)?xiRedirectUrl:window.location;
	this.setAttribute("xiRedirectUrl",_d);
	this.setAttribute("redirectUrl","");
	if(redirectUrl){this.setAttribute("redirectUrl",redirectUrl);}
};
deconcept.STSWFObject.prototype = {
	getAltezza:function(altezza) {
		if (altezza == "100%") {
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {windowHeight = window.innerHeight;}
			else {
				if (document.documentElement && document.documentElement.clientHeight) {
					windowHeight = document.documentElement.clientHeight;
				} else {
					if (document.body && document.body.clientHeight) {windowHeight = document.body.clientHeight;}
				}
			}
			return windowHeight;
		} else {
			return altezza;
		}
	},
	useExpressInstall: function(path) {
		this.xiSWFPath = !path ? "expressinstall.swf" : path;
		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.push(key+"="+_18[key]);}
		return _16;
	},
	getDFPHTML:function(){
		var objHtml="";
		objHtml="<p>Abbiamo riscontrato che il plug-in <strong>adobe flash player</strong> ";
		objHtml+="versione: "+this.getAttribute("version").major+"."+this.getAttribute("version").minor ;
		objHtml+="<br />non &egrave; installato sul tuo computer <br /><br />";
		objHtml+="<a href=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" class=\"link\">";
		objHtml+="Scarica il flash player 8</a><br /> per visualizzare i contenuti.</p>";
		return objHtml;
	},
	getSWFHTML:function(){
		var objHtml="";
		if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
			if(this.getAttribute("doExpressInstall")){
				this.addVariable("MMplayerType","PlugIn");
				this.setAttribute('swf', this.xiSWFPath);
			}
			objHtml="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
			objHtml+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
			var _1a=this.getParams();
			for(var key in _1a){objHtml+=key+"=\""+_1a[key]+"\" ";}
			var _1c=this.getVariablePairs().join("&");
			if(_1c.length>0){objHtml+="flashvars=\""+_1c+"\"";}
			objHtml+="/>";
		}else{
			if(this.getAttribute("doExpressInstall")){
				this.addVariable("MMplayerType", "ActiveX");
				this.setAttribute('swf', this.xiSWFPath);
			}
			objHtml="<object type=\"application/x-shockwave-flash\" id=\""+this.getAttribute("id")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
			objHtml+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
			var _1d = this.getParams();
			for(var key in _1d){objHtml+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}
			var _1f=this.getVariablePairs().join("&");
			if(_1f.length>0){objHtml+="<param name=\"flashvars\" value=\""+_1f+"\" />";}
			objHtml+="</object>";
		}
		return objHtml;
	},
	write:function(divDest){
		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.setAttribute("swf",this.getAttribute("useExpressInstall"));
				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 divDest=="string") ? document.getElementById(divDest) : divDest;
			n.innerHTML=this.getSWFHTML();
			return true;
		}else{
			if(
			   this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));
			} else {
				var n=(typeof divDest=="string")?document.getElementById(divDest):divDest;
				n.innerHTML=this.getDFPHTML();
				return true;
			}
		}
		return false;
	}
};
deconcept.STSWFObjectUtil.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{
		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(_string){
	this.major=_string[0]!=null?parseInt(_string[0]):0;
	this.minor=_string[1]!=null?parseInt(_string[1]):0;
	this.rev=_string[2]!=null?parseInt(_string[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(_29){
		var q=document.location.search||document.location.hash;
		if(q){
			var _2b=q.substring(1).split("&");
			for(var i=0;i<_2b.length;i++){
				if(_2b[i].substring(0,_2b[i].indexOf("="))==_29){
					return _2b[i].substring((_2b[i].indexOf("=")+1));
				}
			}
		}
		return "";
	}
};
deconcept.STSWFObjectUtil.cleanupSWFs=function(){
	var _2d=document.getElementsByTagName("OBJECT");
	for(var i=0;i<_2d.length;i++){
		_2d[i].style.display="none";
		for(var x in _2d[i]){
			if(typeof _2d[i][x]=="function"){
				//_2d[i][x]=null;
			}
		}
	}
};
if(typeof window.onunload=="function"){
	var oldunload=window.onunload;
	window.onunload=function(){
		deconcept.STSWFObjectUtil.cleanupSWFs();
		oldunload();
	};
}else{
	window.onunload=deconcept.STSWFObjectUtil.cleanupSWFs;
}
if(Array.prototype.push==null){
	Array.prototype.push=function(_30){
		this[this.length]=_30;
		return this.length;
	};
}

var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.STSWFObject; // for legacy support
var STSWFObject=deconcept.STSWFObject;

