/**
 * FlashObject v1.3d: Flash detection and embed - http://blog.deconcept.com/flashobject/
 *
 * FlashObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof com=="undefined"){var com=new Object();}
if(typeof com.deconcept=="undefined"){com.deconcept=new Object();}
if(typeof com.deconcept.util=="undefined"){com.deconcept.util=new Object();}
if(typeof com.deconcept.FlashObjectUtil=="undefined"){com.deconcept.FlashObjectUtil=new Object();}
com.deconcept.FlashObject=function(-1,id,w,h,-5,c,-7,-8,-9,-a,-b){
if(!document.createElement||!document.getElementById){return;}
this.DETECT-KEY=-b?-b:"detectflash";
this.skipDetect=com.deconcept.util.getRequestParameter(this.DETECT-KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
this.useExpressInstall=-7;
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 com.deconcept.PlayerVersion(-5.toString().split(".")));}
this.installedVer=com.deconcept.FlashObjectUtil.getPlayerVersion(this.getAttribute("version"),-7);
if(c){this.addParam("bgcolor",c);}
var q=-8?-8:"high";
this.addParam("quality",q);
var -d=(-9)?-9:window.location;
this.setAttribute("xiRedirectUrl",-d);
this.setAttribute("redirectUrl","");
if(-a){this.setAttribute("redirectUrl",-a);}
};
com.deconcept.FlashObject.prototype={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;
},createParamTag:function(n,v){
var p=document.createElement("param");
p.setAttribute("name",n);
p.setAttribute("value",v);
return p;
},getVariablePairs:function(){
var -19=new Array();
var key;
var -1b=this.getVariables();
for(key in -1b){-19.push(key+"="+-1b[key]);}
return -19;
},getFlashHTML:function(){
var -1c="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");
}
// Bug fix for dropdown menu
-1c="<embed wmode=\"transparent\" type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
-1c+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var -1d=this.getParams();
for(var key in -1d){-1c+=[key]+"=\""+-1d[key]+"\" ";}
var -1f=this.getVariablePairs().join("&");
if(-1f.length>0){-1c+="flashvars=\""+-1f+"\"";}
-1c+="/>";
}else{
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
-1c="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
-1c+="<param name=\"wmode\" value=\"transparent\" /><param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var -20=this.getParams();
for(var key in -20){-1c+="<param name=\""+key+"\" value=\""+-20[key]+"\" />";}
var -22=this.getVariablePairs().join("&");
if(-22.length>0){-1c+="<param name=\"flashvars\" value=\""+-22+"\" />";
}-1c+="</object>";}
return -1c;
},write:function(-23){
if(this.useExpressInstall){
var -24=new com.deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(-24)&&!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);}
}else{this.setAttribute("doExpressInstall",false);}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof -23=="string")?document.getElementById(-23):-23;
n.innerHTML=this.getFlashHTML();
}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}}};
com.deconcept.FlashObjectUtil.getPlayerVersion=function(-26,-27){
var -28=new com.deconcept.PlayerVersion(0,0,0);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){-28=new com.deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}
}else{
try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
for(var i=3;axo!=null;i++){
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);
-28=new com.deconcept.PlayerVersion([i,0,0]);}}
catch(e){}
if(-26&&-28.major>-26.major){return -28;}
if(!-26||((-26.minor!=0||-26.rev!=0)&&-28.major==-26.major)||-28.major!=6||-27){
try{
-28=new com.deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
}catch(e){}}}
return -28;
};
com.deconcept.PlayerVersion=function(-2c){
this.major=parseInt(-2c[0])||0;
this.minor=parseInt(-2c[1])||0;
this.rev=parseInt(-2c[2])||0;
};
com.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;
};
com.deconcept.util={getRequestParameter:function(-2e){
var q=document.location.search||document.location.hash;
if(q){var -30=q.indexOf(-2e+"=");
var -31=(q.indexOf("&",-30)>-1)?q.indexOf("&",-30):q.length;
if(q.length>1&&-30>-1){
return q.substring(q.indexOf("="-30)+1,-31);}}return ";
},removeChildren:function(n){
while(n.hasChildNodes()){
n.removeChild(n.firstChild);}}};
if(Array.prototype.push==null){
Array.prototype.push=function(-33){
this[this.length]=-33;
return this.length;};}
var getQueryParamValue=com.deconcept.util.getRequestParameter;
var FlashObject=com.deconcept.FlashObject;"