<!--

function Delegate(){}
Delegate.create=function(o,f){
var pNrQe=new Array();
var NfULg=arguments.length;
for(var i=2;i<NfULg;i++) pNrQe[i-2]=arguments[i];
return function(){
var oDJKe=[].concat(arguments,pNrQe);
f.apply(o,oDJKe);
}
}
Tween=function(obj,prop,func,begin,finish,duration,suffixe){
this.init(obj,prop,func,begin,finish,duration,suffixe)
}
var t=Tween.prototype;
t.obj=new Object();
t.prop='';
t.func=function(t,b,c,d){return c*t/d+b;};
t.begin=0;
t.change=0;
t.prevTime=0;
t.prevPos=0;
t.looping=false;
t.JXVKF=0;
t.bPQut=0;
t.GfeuW=0;
t.mlQNp=0;
t.tQXgx=0;
t.gVqUm=0;
t.IIAEo=false;
t.name='';
t.suffixe='';
t.BkcMn=new Array();
t.setTime=function(t){
this.prevTime=this.bPQut;
if(t>this.getDuration()){
if(this.looping){
this.rewind(t-this.JXVKF);
this.update();
this.UGjpZ('onMotionLooped',{target:this,type:'onMotionLooped'});
}else{
this.bPQut=this.JXVKF;
this.update();
this.stop();
this.UGjpZ('onMotionFinished',{target:this,type:'onMotionFinished'});
}
}else if(t<0){
this.rewind();
this.update();
}else{
this.bPQut=t;
this.update();
}
}
t.isRunning=function(){
return this.IIAEo;
}
t.getTime=function(){
return this.bPQut;
}
t.setDuration=function(d){
this.JXVKF=(d==null||d<=0)?100000:d;
}
t.getDuration=function(){
return this.JXVKF;
}
t.setPosition=function(p){
this.prevPos=this.GfeuW;
var a=this.suffixe!=''?this.suffixe:'';
this.obj[this.prop]=Math.round(p)+a;
this.GfeuW=p;
this.UGjpZ('onMotionChanged',{target:this,type:'onMotionChanged'});
}
t.getPosition=function(t){
if(t==undefined) t=this.bPQut;
return this.func(t,this.begin,this.change,this.JXVKF);
};
t.setFinish=function(f){
this.change=f-this.begin;
};
t.geFinish=function(){
return this.begin+this.change;
};
t.init=function(obj,prop,func,begin,finish,duration,suffixe){
if(!arguments.length) return;
this.BkcMn=new Array();
this.addListener(this);
if(suffixe) this.suffixe=suffixe;
this.obj=obj;
this.prop=prop;
this.begin=begin;
this.GfeuW=begin;
this.setDuration(duration);
if(func!=null&&func!=''){
this.func=func;
}
this.setFinish(finish);
}
t.start=function(){
this.rewind();
this.startEnterFrame();
this.UGjpZ('onMotionStarted',{target:this,type:'onMotionStarted'});
}
t.rewind=function(t){
this.stop();
this.bPQut=(t==undefined)?0:t;
this.fixTime();
this.update();
}
t.fforward=function(){
this.bPQut=this.JXVKF;
this.fixTime();
this.update();
}
t.update=function(){
this.setPosition(this.getPosition(this.bPQut));
}
t.startEnterFrame=function(){
this.stopEnterFrame();
this.IIAEo=true;
this.onEnterFrame();
}
t.onEnterFrame=function(){
if(this.IIAEo){
this.nextFrame();
wa_timeout(Delegate.create(this,this.onEnterFrame),0);
}
}
t.nextFrame=function(){
this.setTime((this.getTimer()-this.tQXgx)/1000);
}
t.stop=function(){
this.stopEnterFrame();
this.UGjpZ('onMotionStopped',{target:this,type:'onMotionStopped'});
}
t.stopEnterFrame=function(){
this.IIAEo=false;
}
t.continueTo=function(finish,duration){
this.begin=this.GfeuW;
this.setFinish(finish);
if(this.JXVKF!=undefined)
this.setDuration(duration);
this.start();
}
t.resume=function(){
this.fixTime();
this.startEnterFrame();
this.UGjpZ('onMotionResumed',{target:this,type:'onMotionResumed'});
}
t.yoyo=function(){
this.continueTo(this.begin,this.bPQut);
}
t.addListener=function(o){
this.removeListener(o);
return this.BkcMn.push(o);
}
t.removeListener=function(o){
var a=this.BkcMn;
var i=a.length;
while(i--){
if(a[i]==o){
a.splice(i,1);
return true;
}
}
return false;
}
t.UGjpZ=function(){
var arr=new Array();
for(var i=0;i<arguments.length;i++){
arr.push(arguments[i])
}
var e=arr.shift();
var a=this.BkcMn;
var l=a.length;
for(var i=0;i<l;i++){
if(a[i][e])
a[i][e].apply(a[i],arr);
}
}
t.fixTime=function(){
this.tQXgx=this.getTimer()-this.bPQut*1000;
}
t.getTimer=function(){
return new Date().getTime()-this.bPQut;
}
Tween.backEaseIn=function(t,b,c,d,a,p){
if(s==undefined) var s=1.70158;
return c*(t/=d)*t*((s+1)*t-s)+b;
}
Tween.backEaseOut=function(t,b,c,d,a,p){
if(s==undefined) var s=1.70158;
return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;
}
Tween.backEaseInOut=function(t,b,c,d,a,p){
if(s==undefined) var s=1.70158;
if((t/=d/2)<1) return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;
return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;
}
Tween.elasticEaseIn=function(t,b,c,d,a,p){
if(t==0) return b;
if((t/=d)==1) return b+c;
if(!p) p=d*.3;
if(!a||a<Math.abs(c)){
a=c;var s=p/4;
}
else
var s=p/(2*Math.PI)*Math.asin(c/a);
return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;
}
Tween.elasticEaseOut=function(t,b,c,d,a,p){
if(t==0) return b;if((t/=d)==1) return b+c;if(!p) p=d*.3;
if(!a||a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);
return(a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b);
}
Tween.elasticEaseInOut=function(t,b,c,d,a,p){
if(t==0) return b;if((t/=d/2)==2) return b+c;if(!p) var p=d*(.3*1.5);
if(!a||a<Math.abs(c)){var a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);
if(t<1) return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;
return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;
}
Tween.bounceEaseOut=function(t,b,c,d){
if((t/=d)<(1/2.75)){
return c*(7.5625*t*t)+b;
}else if(t<(2/2.75)){
return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;
}else if(t<(2.5/2.75)){
return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;
}else{
return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;
}
}
Tween.bounceEaseIn=function(t,b,c,d){
return c-Tween.bounceEaseOut(d-t,0,c,d)+b;
}
Tween.bounceEaseInOut=function(t,b,c,d){
if(t<d/2) return Tween.bounceEaseIn(t*2,0,c,d)*.5+b;
else return Tween.bounceEaseOut(t*2-d,0,c,d)*.5+c*.5+b;
}
Tween.strongEaseInOut=function(t,b,c,d){
return c*(t/=d)*t*t*t*t+b;
}
Tween.regularEaseIn=function(t,b,c,d){
return c*(t/=d)*t+b;
}
Tween.regularEaseOut=function(t,b,c,d){
return-c*(t/=d)*(t-2)+b;
}
Tween.regularEaseInOut=function(t,b,c,d){
if((t/=d/2)<1) return c/2*t*t+b;
return-c/2*((--t)*(t-2)-1)+b;
}
Tween.strongEaseIn=function(t,b,c,d){
return c*(t/=d)*t*t*t*t+b;
}
Tween.strongEaseOut=function(t,b,c,d){
return c*((t=t/d-1)*t*t*t*t+1)+b;
}
Tween.strongEaseInOut=function(t,b,c,d){
if((t/=d/2)<1) return c/2*t*t*t*t*t+b;
return c/2*((t-=2)*t*t*t*t+2)+b;
}
OpacityTween.prototype=new Tween();
OpacityTween.prototype.constructor=Tween;
OpacityTween.superclass=Tween.prototype;
function OpacityTween(obj,func,ReOHF,TOnpQ,JXVKF){
this.targetObject=obj;
this.init(new Object(),'a',func,ReOHF,TOnpQ,JXVKF);
this.onMotionChanged=function(evt){
var v=evt.target.GfeuW;
var t=this.targetObject;
v=Math.round(v*100)/100
t.style['opacity']=v/100;
t.style['-moz-opacity']=v/100;
html_SetOpacity(t,v/100);
}
}
function html_canvas(OCSOQ,DfPJl,PMejg)
{
return "<canvas id='"+OCSOQ+"' width='"+DfPJl+"' height='"+PMejg+"'></canvas>"
}
function WA_canvas(OCSOQ,DfPJl,PMejg)
{
document.write(html_canvas(OCSOQ,DfPJl,PMejg))
}
function mcZVI(DHVhG,x0,y0,lx0,ly0)
{
var x=x0+lx0/2;var y=y0+ly0/2;var lx=lx0/2;var ly=ly0/2;var radius=lx0/2;var yRadius=ly0/2;
DHVhG.beginPath();
var theta,xrCtrl,yrCtrl,angleMid,px,py,cx,cy;
theta=Math.PI/4;xrCtrl=radius/Math.cos(theta/2);yrCtrl=yRadius/Math.cos(theta/2);var angle=0;
DHVhG.moveTo(x+radius,y);
for(var i=0;i<8;i++){
angle+=theta;angleMid=angle-(theta/2);cx=x+Math.cos(angleMid)*xrCtrl;cy=y+Math.sin(angleMid)*yrCtrl;px=x+Math.cos(angle)*radius;py=y+Math.sin(angle)*yRadius;
DHVhG.quadraticCurveTo(cx,cy,px,py);
}
}
function Lxckt(c,x,y,lx,ly,arc,clowckwise)
{
c.beginPath()
eKYFr(c,x,y,lx,ly,arc,clowckwise)
}
function eKYFr(c,x,y,lx,ly,arc,clowckwise)
{
if(clowckwise)
{
c.moveTo(x+arc,y);c.lineTo(x+lx-arc,y);c.quadraticCurveTo(x+lx,y,x+lx,y+arc);c.lineTo(x+lx,y+ly-arc);c.quadraticCurveTo(x+lx,y+ly,x+lx-arc,y+ly);c.lineTo(x+arc,y+ly);c.quadraticCurveTo(x,y+ly,x,y+ly-arc);c.lineTo(x,y+arc);c.quadraticCurveTo(x,y,x+arc,y);
return;
}
c.moveTo(x,y+arc);c.lineTo(x,y+ly-arc);c.quadraticCurveTo(x,y+ly,x+arc,y+ly);c.lineTo(x+lx-arc,y+ly);c.quadraticCurveTo(x+lx,y+ly,x+lx,y+ly-arc);c.lineTo(x+lx,y+arc);c.quadraticCurveTo(x+lx,y,x+lx-arc,y);c.lineTo(x+arc,y);c.quadraticCurveTo(x,y,x,y+arc);
}
function isWebKit()
{
if(navigator.userAgent.match(/webkit/i)) return true;
return false;
}
function isMSIE()
{
return BrowserDetect.browser=="Explorer" 
}
function isMSIE8()
{
if((BrowserDetect.browser=="Explorer")&&(BrowserDetect.version==8))
{
return true;
}
return false;
}
function cwNMj()
{
return isWebKit();
}
function isMobileWithoutFlash()
{
return isIPhone();
}
function isMobileBrowser()
{
return isIPhone();
}
function isIPhone()
{
if(navigator.userAgent.match(/iPhone/i)||navigator.userAgent.match(/iPod/i))
return true;
return false;
}
function PiJxf(lx,ly,parent,id_suffixe)
{
var LmKlW=document.createElement('canvas');LmKlW.width=lx;LmKlW.height=ly;
return LmKlW;
}
function EWNnJ(hasEp)
{
var SKMiR=(-hasEp+45);
return new Point(Math.cos(SKMiR*(2*Math.PI)/360),Math.sin(SKMiR*(2*Math.PI)/360))
}
function ZhrEB(c,hasEp)
{
var offset=EWNnJ(hasEp)
c.shadowOffsetX=2*offset.x;
c.shadowOffsetY=2*offset.y;
c.shadowBlur=4;
}
function WA_over_img_html(BAefH,oLeJB,GmKof)
{
if(!BAefH.src)
{
var Hocge=BAefH.getElementsByTagName("IMG")
if(Hocge.length==1)BAefH=Hocge[0]
}
if(BAefH.src1==undefined)
{
BAefH.src1=BAefH.src;
BAefH.src2=oLeJB;
}
if(GmKof)
{
BAefH.src=BAefH.src2;
}
else
{
BAefH.src=BAefH.src1;
}
}
function WA_over_img(id,GmKof)
{
var el=document.getElementById(id+"-canvas") 

var BAefH=(GmKof)?el.wa_s_img[1]:el.wa_s_img[0]
WA_img(id,el.wa_lx,el.wa_ly,el.wa_arc,el.wa_bord_siz,el.wa_bord_col,[BAefH,BAefH],el.wa_shadow,el.wa_rot,el.wa_reflex,GmKof)
}
function KFHBY(OCSOQ,lx,ly,arc,side)
{
this.id=OCSOQ;
this.lx=lx;
this.ly=ly;
this.arc=arc;
var nSide=side
this.side=nSide
var reflexion=0.25
var sizeReflex=ly*reflexion;
this.decX=0
this.decY=0
this.sX=0;
this.sY=ly-sizeReflex;
this.sLx=lx;
this.sLy=sizeReflex;
this.gradX1=0
this.gradY1=this.sY
this.gradX2=0
this.gradY2=ly 

if(nSide==2)
{
this.decY=1 
}
if(nSide==1)
{
sizeReflex=lx*reflexion;
this.sX=lx-sizeReflex;
this.sY=0;
this.sLx=sizeReflex;
this.sLy=ly;
this.gradX1=this.sX
this.gradY1=0
this.gradX2=lx
this.gradY2=0
this.decX=1
}
if(nSide==0)
{
sizeReflex=ly*reflexion;
this.sX=0;
this.sY=0;
this.sLx=lx;
this.sLy=sizeReflex;
this.gradX1=0
this.gradY1=sizeReflex
this.gradX2=0
this.gradY2=0
this.decY=-1
}
if(nSide==3)
{
sizeReflex=lx*reflexion;
this.sX=0;
this.sY=0;
this.sLx=sizeReflex;
this.sLy=ly;
this.gradX1=sizeReflex
this.gradY1=0
this.gradX2=0
this.gradY2=0
this.decX=-1
}
this.ncKGu=function(canv2)
{
if(isIPhone()) return;
if(/opera/i.test(navigator.userAgent)) return;
if(navigator.userAgent.match(/Firefox/i))
{
var div=document.getElementById(this.id)
if(div.style.MozTransform===undefined) return;
}
var VgRXw=document.getElementById(this.id+"-reflex")
var sPsvY=VgRXw.getContext('2d');

var qtVgE=0;
var JQpUD=0;
if(this.side==2)
{
qtVgE=this.lx;
JQpUD=-this.ly*0.75;
}
else
if(this.side==0)
{
qtVgE=this.lx;
}
else
if(this.side==3)
{
qtVgE=0.25*this.lx;
}
else
if(this.side==1)
{
qtVgE=this.lx;
}
sPsvY.translate(qtVgE,JQpUD)
sPsvY.scale(-1,1)
sPsvY.beginPath()
Lxckt(sPsvY,1,1,this.lx-2,this.ly-2,this.arc)
sPsvY.clip() 

sPsvY.drawImage(canv2,this.sX,this.sY,this.sLx,this.sLy,this.sX,this.sY,this.sLx,this.sLy);
sPsvY.globalCompositeOperation="destination-out";
var gradient=sPsvY.createLinearGradient(this.gradX1,this.gradY1,this.gradX2,this.gradY2);
gradient.addColorStop(0,"rgba(255, 255, 255, 1)");
gradient.addColorStop(1,"rgba(255, 255, 255, 0.1)");
sPsvY.fillStyle=gradient;
sPsvY.beginPath()
sPsvY.rect(this.sX-this.decX,this.sY-this.decY,this.sLx,this.sLy);
sPsvY.fill();
sPsvY.globalCompositeOperation="source-over";
sPsvY.scale(-1,1)
sPsvY.translate(-qtVgE,-JQpUD) 
}
}
function extractNum(st)
{
var len=st.length
if((len>0)&&(st.substring(len-2,len)=="px"))
{
return wa_evaluate(st.substring(0,len-2))
}
return 0;
}
function mHpGw(c2,lx,ly,nAbrN,bord_col,arc,arc2)
{
if(nAbrN>0)
{
c2.beginPath()
c2.fillStyle=bord_col;
c2.beginPath()
Lxckt(c2,0,0,lx,ly,arc)
eKYFr(c2,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2,true)
c2.fill()
}
}
function uZweu()
{
this.tx=0
this.ty=0
this.rotation=0
}
function Xlrub(id,lx,ly,rot,c2,canv2,shadow,matrix)
{
if(navigator.userAgent.match(/Firefox/i)||navigator.userAgent.match(/opera/i))
{
var div=document.getElementById(id)
if(div.style.MozTransform!=undefined) return;
if(matrix==undefined)
{
matrix=new uZweu()
}
div.style.webkitTransformOrigin="0 0"
div.style.webkitTransform="rotate(0deg)";
if(div.style.MozTransform!=undefined)
{
div.style.MozTransform="rotate(0deg)";
div.style.MozTransformOrigin="top left"
}
rot=Math.round(rot/90)*90 
var rUrxt=0;
if(shadow)rUrxt=6
var sMAUo=id+"-canvas"
var el=document.getElementById(sMAUo)
if(div.wa_pos==undefined)
{
div.wa_pos=new Point(extractNum(div.style.left),extractNum(div.style.top))
}
if(div.wa_size==undefined)
{
div.wa_size=new Size(extractNum(div.style.width),extractNum(div.style.height))
}
if(rot==90)
{
html_SetPosition(div,div.wa_pos.x-(ly)-rUrxt,div.wa_pos.y-rUrxt)
html_SetCanvasSize(el,div.wa_size.height+2*rUrxt,div.wa_size.width+2*rUrxt)
html_SetCanvasSize(canv2,div.wa_size.height+4*rUrxt,div.wa_size.width+4*rUrxt)
html_SetSize(div,div.wa_size.height+2*rUrxt,div.wa_size.width+2*rUrxt) 
matrix.tx=ly+2*rUrxt
matrix.ty=2*rUrxt
}
if(rot==180)
{
html_SetPosition(div,div.wa_pos.x-lx,div.wa_pos.y-ly)
matrix.tx=lx
matrix.ty=ly
}
if(rot==270)
{
html_SetPosition(div,div.wa_pos.x-rUrxt,div.wa_pos.y-lx-rUrxt)
html_SetCanvasSize(el,div.wa_size.height+2*rUrxt,div.wa_size.width+2*rUrxt)
html_SetCanvasSize(canv2,div.wa_size.height+4*rUrxt,div.wa_size.width+4*rUrxt)
html_SetSize(div,div.wa_size.height+2*rUrxt,div.wa_size.width+2*rUrxt) 
matrix.tx=2*rUrxt
matrix.ty=lx+2*rUrxt
}
matrix.rotation=rot*2*Math.PI/360
c2.translate(matrix.tx,matrix.ty)
c2.rotate(matrix.rotation)
}
}
function WA_img(id,lx,ly,arc,nAbrN,bord_col,s_img,shadow,rot,eusIJ,b_over)
{
var sMAUo=id+"-canvas"
var el=document.getElementById(sMAUo)
var c=el.getContext('2d');
var HHBvJ=false;
if((eusIJ!=undefined)&&(eusIJ!=-1))
{
HHBvJ=new KFHBY(sMAUo,lx,ly,arc,eusIJ)
}
var rUrxt=0;
if(shadow)rUrxt=6 


if(el.wa_lx==undefined)
{
el.wa_lx=lx
el.wa_ly=ly
el.wa_arc=arc
el.wa_bord_siz=nAbrN
el.wa_bord_col=bord_col
el.wa_s_img=s_img
el.wa_shadow=shadow
el.wa_rot=rot
el.wa_reflex=eusIJ
c.translate(rUrxt,rUrxt)
}
var wCDBs_img=document.getElementById(id+"-cache")
wCDBs_img.onload=function()
{
c.clearRect(0,0,lx+2*rUrxt,ly+2*rUrxt)
var arc2=arc-nAbrN;
if(arc2<0)arc2=0;
this.width=lx-2*nAbrN
this.height=ly-2*nAbrN
if(isMSIE())
{
if(shadow) kvgNr(c,0,0,lx,ly,arc,false,rot)
var YGiRO=c.createPattern(this,'no-repeat');
c.fillStyle=YGiRO;
c.beginPath()
Lxckt(c,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2)
c.translate(nAbrN,nAbrN)
c.fill()
c.translate(-nAbrN,-nAbrN)
mHpGw(c,lx,ly,nAbrN,bord_col,arc,arc2)
}
else
if(navigator.userAgent.match(/Firefox/i)&&(shadow))
{
var HRitj=new  uZweu()
Xlrub(id,lx,ly,rot,c,el,shadow,HRitj)
if(shadow) kvgNr(c,0,0,lx,ly,arc,false,rot)
var c2=c
mHpGw(c2,lx,ly,nAbrN,bord_col,arc,arc2)
c2.beginPath()
Lxckt(c2,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2)
c2.clip()
c2.drawImage(this,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN);
c2.rotate(-HRitj.rotation)
c2.translate(-HRitj.tx,-HRitj.ty)
}
else
{
var canv2=PiJxf(lx,ly,el,"bis2");
var c2=canv2.getContext('2d');
var HRitj=new  uZweu()
Xlrub(id,lx,ly,rot,c2,canv2,shadow,HRitj)
c.clearRect(-rUrxt,-rUrxt,lx+2*rUrxt,ly+2*rUrxt)
mHpGw(c2,lx,ly,nAbrN,bord_col,arc,arc2)
c2.beginPath()
Lxckt(c2,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2)
c2.clip()
c2.drawImage(this,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN);
c2.rotate(-HRitj.rotation)
c2.translate(-HRitj.tx,-HRitj.ty)
if(shadow) ZhrEB(c,rot)
c.drawImage(canv2,0,0);
c2.translate(HRitj.tx,HRitj.ty)
c2.rotate(HRitj.rotation)
if(HHBvJ)
{
HHBvJ.ncKGu(canv2)
}
}
}
wCDBs_img.src=s_img[0];
}
function vWxgg(QJwkw,hasEp,BiFVX,mWnfn)
{
QJwkw.style.left=BiFVX+"px"
QJwkw.style.top=mWnfn+"px"
QJwkw.style.webkitTransformOrigin="0 0"
QJwkw.style.webkitTransform="rotate("+hasEp+"deg)";
}
function LmAFS(c,type,lx,ly,corner)
{
if(type==1)
mcZVI(c,0,0,lx,ly)
else
Lxckt(c,0,0,lx,ly,corner)
}
function bmOVV(el,c,type,lx,ly,corner,bg,fcSAP,rot)
{
if(cwNMj()==false)
{
c.fillStyle=bg;
LmAFS(c,type,lx,ly,corner)
c.fill()
}
else
{
var canv2=PiJxf(lx,ly,el,"bis");
var c2=canv2.getContext('2d');
c2.fillStyle=bg;
LmAFS(c2,type,lx,ly,corner)
c2.fill()
if(fcSAP) ZhrEB(c,rot)
c.drawImage(canv2,0,0);
c.shadowOffsetX=0;
c.shadowOffsetY=0;
c.shadowBlur=0;
}
}
function YPUEG(c,type,lx,ly,MKpCL,bg,nwUIt,pSlqw_glow)
{
if(nwUIt)
{
var x1=nwUIt[0];var y1=nwUIt[1];var lx1=nwUIt[2];var ly1=nwUIt[3];var VbGMn=nwUIt[4];
var iUbgc=c.createLinearGradient(x1,y1,x1,y1+ly1);
iUbgc.addColorStop(0,"rgba(255,255,255,0.7)");iUbgc.addColorStop(1,"rgba(255,255,255,0.1)");
c.fillStyle=iUbgc;
if(type==1) mcZVI(c,x1,y1,lx1,ly1)
else
Lxckt(c,x1,y1,lx1,ly1,VbGMn)
c.fill()
}
if(pSlqw_glow)
{
var x2=pSlqw_glow[0];var y2=pSlqw_glow[1];var lx2=pSlqw_glow[2];var ly2=pSlqw_glow[3];
var ndboM=pSlqw_glow[4];
var duPfJ_glow=new RGBColor(pSlqw_glow[5]);
duPfJ_glow.a=0;
var col1=pSlqw_glow[5];
var col2=duPfJ_glow.toRGB();
var aXciu=c.createLinearGradient(x2,y2,x2,y2+ly2);
aXciu.addColorStop(0,col2);
aXciu.addColorStop(0.2,col2);
aXciu.addColorStop(1,col1);
c.fillStyle=aXciu;
if(type==1) mcZVI(c,x2,y2,lx2,ly2)
else
Lxckt(c,x2,y2,lx2,ly2,ndboM)
c.fill()
}
}
function rdMKN(BgCiP,OCSOQ,XsGXx,DfPJl,PMejg,MKpCL,cfMMc,nwUIt,pSlqw_glow,fcSAP,hasEp)
{
BgCiP.OCSOQ=OCSOQ;BgCiP.XsGXx=XsGXx;
BgCiP.DfPJl=DfPJl;BgCiP.PMejg=PMejg;
BgCiP.MKpCL=MKpCL;BgCiP.cfMMc=cfMMc,BgCiP.nwUIt=nwUIt;
BgCiP.pSlqw_glow=pSlqw_glow;BgCiP.fcSAP=fcSAP;BgCiP.hasEp=hasEp;
}
function WA_but_over(OCSOQ,cfMMc_over,duPfJ_glow)
{
var dbaRP=document.getElementById(OCSOQ) 
if(dbaRP&&dbaRP.AqAvv)
with(dbaRP.AqAvv)
{
var pSlqw_glow_over;
if(pSlqw_glow&&duPfJ_glow)
{
pSlqw_glow_over=new Array();
for(var AYLvM=0;AYLvM<pSlqw_glow.length;AYLvM++)pSlqw_glow_over[AYLvM]=pSlqw_glow[AYLvM];
pSlqw_glow_over[5]=duPfJ_glow;
}
WA_but(OCSOQ,XsGXx,DfPJl,PMejg,MKpCL,cfMMc_over,nwUIt,pSlqw_glow_over,fcSAP,hasEp);
}
var IFdZd_over0=document.getElementById(OCSOQ+"-div0")
if(IFdZd_over0)html_SetVisibility(IFdZd_over0,false);
var gCrsk=document.getElementById(OCSOQ+"-div1")
if(gCrsk)html_SetVisibility(gCrsk,true);
}
function WA_but_out(OCSOQ)
{
var dbaRP=document.getElementById(OCSOQ)
with(dbaRP.AqAvv)
{
WA_but(OCSOQ,XsGXx,DfPJl,PMejg,MKpCL,cfMMc,nwUIt,pSlqw_glow,fcSAP,hasEp);
}
var IFdZd_over0=document.getElementById(OCSOQ+"-div0")
if(IFdZd_over0)html_SetVisibility(IFdZd_over0,true);
var gCrsk=document.getElementById(OCSOQ+"-div1")
if(gCrsk)html_SetVisibility(gCrsk,false);
}
function WA_but(id,type,lx,ly,corner,bg,top_light,s_glow,fcSAP,rot)
{
var el=document.getElementById(id)
if(el.AqAvv==undefined)
{
el.AqAvv=new Array();
rdMKN(el.AqAvv,id,type,lx,ly,corner,bg,top_light,s_glow,fcSAP,rot);
}
var c=el.getContext('2d');
var rUrxt=0;
if(fcSAP)rUrxt=6 
c.fillStyle="#000000";
c.fillRect(0,0,lx+2*rUrxt,ly+2*rUrxt) 
c.clearRect(0,0,lx+2*rUrxt,ly+2*rUrxt) 
var bg2=bg
if(bg2.substring(0,1)=="(")
{
bg2=bg2.substring(1)
bg2=bg2.substring(0,bg2.length-1)
var img=new Image();
img.onload=function()
{
if(cwNMj()==false)
{
c.translate(rUrxt,rUrxt)
img.width=lx
img.height=ly 
if(fcSAP)
kvgNr(c,0,0,lx,ly,corner,(type==1),rot)
if(navigator.userAgent.match(/Firefox/i))
{
c.beginPath()
LmAFS(c,type,lx,ly,corner)
c.clip()
c.drawImage(img,0,0,lx,ly);
}
else
{
var ptrn=c.createPattern(img,'no-repeat');
c.fillStyle=ptrn;
c.beginPath()
LmAFS(c,type,lx,ly,corner)
c.fill()
}
YPUEG(c,type,lx,ly,corner,bg,top_light,s_glow)
c.translate(-rUrxt,-rUrxt)
}
else
{
var canv2=PiJxf(lx,ly,el,"bis");
var c2=canv2.getContext('2d');
c2.beginPath()
LmAFS(c2,type,lx,ly,corner)
c2.clip()
c2.drawImage(img,0,0,lx,ly);
YPUEG(c2,type,lx,ly,corner,bg,top_light,s_glow)
if(fcSAP) ZhrEB(c,rot) 
c.drawImage(canv2,rUrxt,rUrxt);
}
}
img.src=bg2;
return;
}
c.translate(rUrxt,rUrxt) 
if(fcSAP&&(cwNMj()==false))
{
var ibcFX=new RGBColor(bg);
if(ibcFX.a>0)
{
kvgNr(c,0,0,lx,ly,corner,(type==1),rot)
}
}
bmOVV(el,c,type,lx,ly,corner,bg2,fcSAP,rot)
YPUEG(c,type,lx,ly,corner,bg,top_light,s_glow)
c.translate(-rUrxt,-rUrxt)
}
function kvgNr(c,x0,y0,lx0,ly0,corner,is_circle,rot)
{
var decShadow=2;
var offset=EWNnJ(rot)
c.translate(decShadow*offset.x,decShadow*offset.y)
var dec_init=2;
var x=x0-dec_init;var y=y0-dec_init;var lx=lx0+2*dec_init;var ly=ly0+2*dec_init;var opacity=0.1;
for(var n=0;n<4;n++)
{
c.beginPath()
if(is_circle) mcZVI(c,x,y,lx,ly);else Lxckt(c,x,y,lx,ly,corner);
c.fillStyle="rgba(0,0,0, "+opacity+")"
c.fill()
x+=1;y+=1;lx-=2;ly-=2;opacity+=0.04
}
c.translate(-decShadow*offset.x,-decShadow*offset.y)
}
function vwkrX(id,x,y,lx,ly,arc,nAbrN,bord_col,bg,shadow,rot,SPQQd,pLrEc)
{
if(pLrEc==undefined)pLrEc=true;
var el=document.getElementById(id)
var c=el.getContext('2d');
if(SPQQd==undefined)SPQQd=1.0;
var rUrxt=0;
c.shadowOffsetX=0;
c.shadowOffsetY=0;
c.shadowBlur=0;
if(shadow)
{
rUrxt=6;
}
if(pLrEc) c.clearRect(0,0,el.width,el.height)
c.globalAlpha=SPQQd 
var x_rect0=0;
var y_rect0=0;
var bg1=bg[0]
var fill_obj=false;
if(bg1.substring(0,1)=="(")
{
bg1=bg1.substring(1);
bg1=bg1.substring(0,bg1.length-1)
var Ngwxg=bg1.split(";");
var x1=parseFloat(Ngwxg[0]);
var y1=parseFloat(Ngwxg[1]);
var x2=parseFloat(Ngwxg[2]);
var y2=parseFloat(Ngwxg[3]);
var col1=Ngwxg[4];
var col2=Ngwxg[5];
var grad=c.createLinearGradient(x1,y1,x2,y2);
grad.addColorStop(0,col1);
grad.addColorStop(1,col2);
fill_obj=grad
}
else
{
if(bg1.length==0)bg1='rgba(0,0,0,0)'
fill_obj=bg1;
}
var arc2=arc-nAbrN;
if(arc2<0)arc2=0
var canv2=false;
var c2=c;
{
if(shadow) kvgNr(c,rUrxt,rUrxt,lx,ly,arc,false,rot)
}
if(nAbrN>0)
{
c2.fillStyle=bord_col;
Lxckt(c2,x,y,lx,ly,arc)
eKYFr(c2,x+nAbrN,y+nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2,true)
c2.fill()
}


c2.fillStyle=fill_obj 
Lxckt(c2,x+nAbrN,y+nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2)
c2.fill();
}
function bVInN(vPOiA,UTRUE,VWOhL)
{
return new Point(Math.round(vPOiA*Math.cos(VWOhL)-UTRUE*Math.sin(VWOhL)),Math.round(vPOiA*Math.sin(VWOhL)+UTRUE*Math.cos(VWOhL)))
}
function ImwMC(c,x,y,lx,ly,arc,clowckwise,hasEp)
{
c.beginPath()
iFnOV(c,x,y,lx,ly,arc,clowckwise,hasEp)
}
function iFnOV(c,x,y,lx,ly,arc,clowckwise,hasEp)
{
if(clowckwise)
{
c.moveTo(x+arc,y);
c.lineTo(x+lx-arc,y);
c.quadraticCurveTo(x+lx,y,x+lx,y+arc);
c.lineTo(x+lx,y+ly-arc);
c.quadraticCurveTo(x+lx,y+ly,x+lx-arc,y+ly);
c.lineTo(x+arc,y+ly);
c.quadraticCurveTo(x,y+ly,x,y+ly-arc);
c.lineTo(x,y+arc);
c.quadraticCurveTo(x,y,x+arc,y);
return;
}
var mJjPS=[[x,y+arc],[x,y+ly-arc],[x,y+ly],[x+arc,y+ly],[x+lx-arc,y+ly],[x+lx,y+ly],[x+lx,y+ly-arc],[x+lx,y+arc],[x+lx,y],[x+lx-arc,y],[x+arc,y],[x,y],[x,y+arc]];
var theta=hasEp*2*Math.PI/360
for(var n=0;n<mJjPS.length;n++)
{
var VekiB=mJjPS[n][0]
var RbgsG=mJjPS[n][1]
mJjPS[n][0]=VekiB*Math.cos(theta)-RbgsG*Math.sin(theta);
mJjPS[n][1]=VekiB*Math.sin(theta)+RbgsG*Math.cos(theta);
}
var n=0;
c.moveTo(mJjPS[n][0],mJjPS[n++][1]);
c.lineTo(mJjPS[n][0],mJjPS[n++][1]);
c.quadraticCurveTo(mJjPS[n][0],mJjPS[n++][1],mJjPS[n][0],mJjPS[n++][1]);
c.lineTo(mJjPS[n][0],mJjPS[n++][1]);
c.quadraticCurveTo(mJjPS[n][0],mJjPS[n++][1],mJjPS[n][0],mJjPS[n++][1]);
c.lineTo(mJjPS[n][0],mJjPS[n++][1]);
c.quadraticCurveTo(mJjPS[n][0],mJjPS[n++][1],mJjPS[n][0],mJjPS[n++][1]);
c.lineTo(mJjPS[n][0],mJjPS[n++][1]);
c.quadraticCurveTo(mJjPS[n][0],mJjPS[n++][1],mJjPS[n][0],mJjPS[n++][1]);
}
function kjkqD(a,b,x,y)
{
return(a*x-y+b)/(Math.sqrt(1+a*a))
}
function PTUXK(new_a1,new_b1,Sdpvw,multi)
{
var d=0;
for(var i=0;i<Sdpvw.length;i++)
{
var HFWpU=Sdpvw[i]
var d1=kjkqD(new_a1,new_b1,HFWpU.x,HFWpU.y)
if(multi<0)
{
if(d1<0) d=Math.max(d,-d1);
}
else
{
if(d1>0) d=Math.max(d,d1);
}
}
return d;
}
function xPJdx(o1,o2)
{
if(o1<o2) return-1
if(o1>o2) return 1
return 0
}
function Kngti(c,lx,ly,bg1)
{
var fill_obj=false;
var LinuZ=false;
var jLgum=false;
var Sdpvw=false
if(bg1.substring(0,1)=="(")
{
bg1=bg1.substring(1);
bg1=bg1.substring(0,bg1.length-1)
var Ngwxg=bg1.split(";");
var ENOZu=new Point(parseFloat(Ngwxg[0]),parseFloat(Ngwxg[1]));
var SABcf=new Point(parseFloat(Ngwxg[2]),parseFloat(Ngwxg[3]));
LinuZ=ENOZu.clone()
jLgum=SABcf.clone()
var col1=Ngwxg[4];
var col2=Ngwxg[5];
var grad=c.createLinearGradient(LinuZ.x,LinuZ.y,jLgum.x,jLgum.y);
if(isMSIE())
{
LinuZ=ENOZu.clone()
jLgum=SABcf.clone() 
var iUbgc=0;
var aXciu=1;
{
Sdpvw=[{x:0,y:0},{x:lx,y:0},{x:lx,y:ly},{x:0,y:ly}]
var d1=0;
var d2=0;
var a=(jLgum.y-LinuZ.y)/(jLgum.x-LinuZ.x);
var b=LinuZ.y-a*LinuZ.x;
var diff=1;
if(a==Infinity)
{
d1=(LinuZ.y)
d2=(ly-jLgum.y)
}
else
if(a==0)
{
d1=(LinuZ.x)
d2=(lx-jLgum.x)
}
else
{
var new_a1=-1/a;
var new_b1=LinuZ.y-new_a1*LinuZ.x;
d1=PTUXK(new_a1,new_b1,Sdpvw,-1)
var new_b2=jLgum.y-new_a1*jLgum.x;
d2=PTUXK(new_a1,new_b2,Sdpvw,1)
if(new_a1<0)diff=-1;
}
var d=Math.sqrt(Math.pow(jLgum.x-LinuZ.x,2)+Math.pow(jLgum.y-LinuZ.y,2))
var total=(d1+d+d2)
iUbgc=d1/total;
aXciu=(d1+d)/total;
var pt_prod0=new Point(jLgum.x-LinuZ.x,jLgum.y-LinuZ.y)
var pt_prod1=new Point(0,100)
var prod=(pt_prod0.x*pt_prod1.y-pt_prod1.x*pt_prod0.y);
if(prod*diff<0)
{
iUbgc=d2/total;
aXciu=(d2+d)/total;
}
}
grad.addColorStop(iUbgc,col1);
grad.addColorStop(aXciu,col2);

}
else
{
grad.addColorStop(0,col1);
grad.addColorStop(1,col2);
}
fill_obj=grad
}
else
{
fill_obj=bg1;
}
return fill_obj;
}
function WA_bg3(id,lx,ly,arc,nAbrN,bord_col,bg,shadow,rot,fhBhr,wcWJv,SPQQd,pLrEc)
{


var theta=rot*2*Math.PI/360 
if(pLrEc==undefined)pLrEc=true;
if(SPQQd==undefined)SPQQd=1.0;
var el=document.getElementById(id)
if(!el)return
var c=el.getContext('2d');
var rUrxt=(el.width-lx)/2;
if(pLrEc) c.clearRect(0,0,el.width,el.height)
var x_rect0=rUrxt;
var y_rect0=rUrxt;
var bg1=bg[0]
var fill_obj=false;
var LinuZ=false;
var jLgum=false;
var Sdpvw=false
fill_obj=Kngti(c,lx,ly,bg1) 
if(SPQQd==undefined)SPQQd=1.0;
var arc2=arc-nAbrN;
if(arc2<0)arc2=0
var canv2=false;
var c2=c;
if(shadow)
{
c2.translate(fhBhr+6,wcWJv+6)
}
else
{
c2.translate(fhBhr,wcWJv)
}
c2.fillStyle=fill_obj;
ImwMC(c2,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2,false,rot)
c2.fill();
}
function WA_bg(id,lx,ly,arc,nAbrN,bord_col,bg,shadow,rot,SPQQd,pLrEc)
{

if(pLrEc==undefined)pLrEc=true;
if(SPQQd==undefined)SPQQd=1.0;
var el=document.getElementById(id)
if(!el)return
var c=el.getContext('2d');
var rUrxt=(el.width-lx)/2;
if(pLrEc) c.clearRect(0,0,el.width,el.height) 

var fill_obj=Kngti(c,lx,ly,bg[0])
if(bg.length>1)
{
var bg2=bg[1]
var img=new Image();
img.onload=function()
{
var ptrn=c.createPattern(img,'repeat');
c.fillStyle=ptrn;
c.beginPath()
xJDiC(c,el,lx,ly,arc,nAbrN,bord_col,ptrn,shadow,rot,SPQQd)
}
img.src=bg2;
}
else
{
xJDiC(c,el,lx,ly,arc,nAbrN,bord_col,fill_obj,shadow,rot,SPQQd)
}
}
function xJDiC(c,el,lx,ly,arc,nAbrN,bord_col,fill_obj,shadow,rot,SPQQd)
{
if(SPQQd==undefined)SPQQd=1.0;
var arc2=arc-nAbrN;
if(arc2<0)arc2=0
var rUrxt=(el.width-lx)/2;
var x_rect0=rUrxt;
var y_rect0=rUrxt;
var canv2=false;
var c2=c;
c.globalAlpha=SPQQd
if(cwNMj()==true)
{
canv2=PiJxf(lx,ly);
c2=canv2.getContext('2d');
c2.globalAlpha=SPQQd
}
else
{
c2.translate(rUrxt,rUrxt)
if(shadow) kvgNr(c,0,0,lx,ly,arc,false,rot)
}
if(nAbrN>0)
{
c2.fillStyle=bord_col;
Lxckt(c2,0,0,lx,ly,arc)
eKYFr(c2,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2,true)
c2.fill()
}
c2.fillStyle=fill_obj;
Lxckt(c2,nAbrN,nAbrN,lx-2*nAbrN,ly-2*nAbrN,arc2)
c2.fill();
if(cwNMj()==true)
{
if(shadow) ZhrEB(c,rot)
c.drawImage(canv2,rUrxt,rUrxt);
}
else
{
c2.translate(-rUrxt,-rUrxt)
}
}
function WA_div_offset(id,x,y)
{
if(isMSIE())
{
var el=document.getElementById(id)
if(el.filters)
{
el.style.left=""+x+"px";el.style.top=""+y+"px";
}
}
}


function Size(lx,ly)
{
this.width=lx;this.height=ly;
this.clone=function(){return new Size(this.width,this.height)}
this.greaterThan=function(pSlqw){return(this.width>pSlqw.width)&&(this.height>pSlqw.height)}
this.scale=function(nrsJh,fQnev)
{
if(!fQnev)fQnev=false
var RaLjt=this;
var iRFcv=RaLjt.width
var UFDJI=RaLjt.height
var p1=iRFcv*nrsJh.height;
var p2=nrsJh.width*UFDJI;
var r1=iRFcv/UFDJI;
var r2=UFDJI/iRFcv;
var newSize1=new Size(nrsJh.height*r1,nrsJh.height);
var newSize2=new Size(nrsJh.width,nrsJh.width*r2);
if(p2>p1)
{
if((fQnev==true)||((newSize1.width<=RaLjt.width)&&(newSize1.height<=RaLjt.height)))
{
RaLjt.width=Math.round(newSize1.width);
RaLjt.height=Math.round(newSize1.height);
}
}
else
{
if((fQnev==true)||((newSize2.width<=RaLjt.width)&&(newSize2.height<=RaLjt.height)))
{
RaLjt.width=Math.round(newSize2.width);
RaLjt.height=Math.round(newSize2.height);
}
}
this.width=RaLjt.width;
this.height=RaLjt.height;
return true;
}
}
function Point(p_x,p_y){this.x=p_x;this.y=p_y;
this.translate=function(vPOiA,UTRUE){this.x+=vPOiA;this.y+=UTRUE;}
this.clone=function(){return new Point(this.x,this.y)}
}
function Rect(p_x,p_y,lx,ly)
{
this.x=p_x;this.y=p_y;this.width=lx;this.height=ly;
this.clone=function(){return new Rect(this.x,this.y,this.width,this.height)}
this.equals=function(QJwkw){return(this.x==QJwkw.x)&&(this.y==QJwkw.y)&&(this.width==QJwkw.width)&&(this.height==QJwkw.height);}
this.copy=function(QJwkw){this.x=QJwkw.x;this.y=QJwkw.y;this.width=QJwkw.width;this.height=QJwkw.height;}
this.translate=function(vPOiA,UTRUE){this.x+=vPOiA;this.y+=UTRUE;}
this.isValid=function(){return(this.width>0)&&(this.height>0);}
}
function html_getLayer(QJwkw)
{
if(typeof(QJwkw)=="string")return document.getElementById(QJwkw);
return QJwkw;
}
function html_SetPosition(QJwkw,vPOiA,UTRUE){
QJwkw=html_getLayer(QJwkw);
QJwkw.style.left=vPOiA+"px";QJwkw.style.top=UTRUE+"px";
}
function html_SetSize(BHxaj,DfPJl,PMejg){
QJwkw=html_getLayer(BHxaj);
QJwkw.style.width=DfPJl+"px";QJwkw.style.height=PMejg+"px";
}
function html_SetRect(QJwkw,BvUmJ){html_SetGeometry(QJwkw,BvUmJ.x,BvUmJ.y,BvUmJ.width,BvUmJ.height);}
function html_SetGeometry(QJwkw,vPOiA,UTRUE,DfPJl,PMejg){html_SetPosition(QJwkw,vPOiA,UTRUE);html_SetSize(QJwkw,DfPJl,PMejg);}
function html_SetVisibility(QJwkw,LXLTi){QJwkw=html_getLayer(QJwkw);QJwkw.style.visibility=(LXLTi)?"visible":"hidden";}
function html_SetDisplay(QJwkw,LXLTi){QJwkw=html_getLayer(QJwkw);QJwkw.style.display=(LXLTi)?"block":"none";}
function html_SetCanvasSize(QJwkw,DfPJl,PMejg){QJwkw=html_getLayer(QJwkw);QJwkw.width=DfPJl;QJwkw.height=PMejg;}
function html_writeContent(QJwkw,pSlqw){QJwkw=html_getLayer(QJwkw);QJwkw.innerHTML=pSlqw;}
function html_SetOpacity(QJwkw,pNrQe)
{
QJwkw=html_getLayer(QJwkw);
QJwkw.style['opacity']=pNrQe;
QJwkw.style['-moz-opacity']=pNrQe;
QJwkw.style.filter=(pNrQe==1)?'':'alpha(opacity='+(pNrQe*100)+')';
}
var nuCHN=[
{acc:"e",l:["é","è","ë"]},{acc:"a",l:["à","ä","â"]},{acc:"u",l:["ü","û"]},{acc:"c",l:["ç"]},{acc:"o",l:["ö","ô"]}
];
function removeAccentsFromString(s)
{
var res=s.toLowerCase();
for(var i=0;i<nuCHN.length;i++)
{
var array2=nuCHN[i].l;
for(var i2=0;i2<array2.length;i2++)
{
var reg=new RegExp(array2[i2],"g");
res=res.replace(reg,nuCHN[i].acc)
}
}
return res;
}
function trimString(str)
{
return str.replace(/^\s*|\s*$/g,"");
}
function IsNumeric(JBkBa)
{
var OLDdO="0123456789.";var GcHnW=true;var ffuqS;
for(AYLvM=0;AYLvM<JBkBa.length&&GcHnW==true;AYLvM++){ffuqS=JBkBa.charAt(AYLvM);if(OLDdO.indexOf(ffuqS)==-1) GcHnW=false;}
return GcHnW;
}
function getWindowScroll()
{
var x=0;var y=0;
if(typeof(window.pageYOffset)=='number'){
x=window.pageXOffset;y=window.pageYOffset;
}else if(document.body&&(document.body.scrollLeft||document.body.scrollTop)){
x=document.body.scrollLeft;y=document.body.scrollTop;
}else if(document.documentElement&&(document.documentElement.scrollLeft||document.documentElement.scrollTop)){
x=document.documentElement.scrollLeft;y=document.documentElement.scrollTop;
}
return new Point(x,y);
}
function getWindowSize()
{
var lx=0;var ly=0;;
if(isMSIE())
{
lx=document.documentElement.clientWidth;ly=document.documentElement.clientHeight;
if((lx==0)&&(ly==0))
{
if(document.body&&(document.body.clientWidth)){
lx=document.body.clientWidth;ly=document.body.clientHeight;
}
}
}
else
if(typeof(window.innerWidth)=='number')
{
lx=window.innerWidth;
if(document.documentElement.clientWidth>0)lx=document.documentElement.clientWidth
ly=window.innerHeight;
if(document.documentElement.clientHeight>0)ly=document.documentElement.clientHeight
}
if(isIPhone())
if(typeof(window.innerWidth)=='number')
{
lx=window.innerWidth;ly=window.innerHeight;
}
return new Size(lx,ly);
}
function getWindowFullSize()
{
var lx=0;var ly=0;;
if(isMSIE())
{
lx=document.documentElement.clientWidth;ly=document.documentElement.clientHeight;
if((lx==0)&&(ly==0))
{
if(document.body&&(document.body.clientWidth)){
lx=document.body.clientWidth;ly=document.body.clientHeight;
}
}
}
else
if(typeof(window.innerWidth)=='number'){
lx=window.innerWidth;
if(document.documentElement.clientWidth>0)lx=document.documentElement.clientWidth
ly=window.innerHeight;
if(document.documentElement.clientHeight>0)ly=document.documentElement.clientHeight
}
return new Size(lx,ly);
}
function urlSuffixe(ShJWX)
{
var QMVhB=ShJWX*60;
var cAKqL=new Date();
var fkbrr=0;
fkbrr+=cAKqL.getYear()*12*31*24*60*60;
fkbrr+=cAKqL.getMonth()*31*24*60*60;
fkbrr+=cAKqL.getDate()*24*60*60;
fkbrr+=cAKqL.getHours()*60*60;
fkbrr+=cAKqL.getMinutes()*60;
fkbrr+=cAKqL.getSeconds();
if(QMVhB!=0)
{
fkbrr=Math.floor(fkbrr/QMVhB)*QMVhB
}
return "-"+fkbrr;
}
function urlAntiCacheForPreview()
{
if(document.webaca_is_preview) return urlSuffixe(0);
return "";
}
function html_findPos(obj)
{
var pNrQe=IaSAH(obj)
return new Point(pNrQe[0],pNrQe[1])
}
function IaSAH(obj)
{
var curleft=curtop=0;
if(obj.offsetParent)
{
do
{
curleft+=obj.offsetLeft;curtop+=obj.offsetTop;
}while(obj=obj.offsetParent);
}
return [curleft,curtop];
}
function Wa_search_input(ElLwk,DfPJl,PMejg)
{
document.write("<input id='"+ElLwk+"' type=search results=0 placeholder='' style='width:"+DfPJl+"px;height:"+PMejg+"px;'>")
}
function fKFoV()
{
var Hocge=document.getElementsByTagName("A");
for(var AYLvM=0;AYLvM<Hocge.length;AYLvM++)
{
var QJwkw=Hocge[AYLvM];
if(QJwkw.onmouseover)QJwkw.onmouseover=null;
if(QJwkw.onmouseout)QJwkw.onmouseout=null;
}
}
function sSgNQ()
{
for(var teSlo in document.wa_global_list_element)
{
var OCSOQ=document.wa_global_list_element[teSlo]
var dbaRP=document.getElementById(OCSOQ)
dbaRP.onclick=function()
{
WA_focus(this)
}
}
}
function WA_declare(OCSOQ)
{
if(!document.wa_global_list_element)
{
document.wa_global_list_element=new Array();;
}
document.wa_global_list_element.push(OCSOQ)
}
function xpOSO()
{
var EkvFW=window.location.search;
if(EkvFW.substr(0,1)=="?")EkvFW=EkvFW.substr(1);
if(EkvFW.length==0)return;
var latXS=new Array();
var WDYJN=EkvFW.split("&");
for(var i=0;i<WDYJN.length;i++)
{
var INbCf=WDYJN[i].split("=");latXS[INbCf[0]]=INbCf[1];
}
var pSlqw_info=latXS["crbst_info"];
if(!pSlqw_info)return;
var VXcwB=new Array();
VXcwB.m_unid=pSlqw_info;
VXcwB.m_index_item=-1;
var BBgFm=pSlqw_info.indexOf("-");
if(BBgFm!=-1)
{
VXcwB.m_unid="wa-id-"+pSlqw_info.substring(0,BBgFm);
VXcwB.m_index_item=parseInt(pSlqw_info.substring(BBgFm+1));
}
document.wa_global_query_info=VXcwB;
}
function IS_onload_WA()
{

if(isMSIE8())
{
wa_timeout("IS_onload_ui()",0)
}
else
{
IS_onload_ui()
}
if(isIPhone())
{
fKFoV()
}
else
{
sSgNQ()
}
xpOSO();

nVGXD()
}
function nVGXD()
{
var bViEd=0;
var hOPdL=document.webaca_banner_height;
if(document.webaca_page_is_centered)
{
var IuuWB=getWindowSize().width
var Oiehk=document.webaca_width_page
if(IuuWB>Oiehk)bViEd=(IuuWB-Oiehk)/2;
}
document.body.style.backgroundPosition=bViEd+"px "+hOPdL+"px";
}


function WA_loadMessages()
{
for(var k in CONST_WA_TR)
{
var key=CONST_WA_TR[k]
Translator.m_tr[key[0]]=key[1]
}
for(var n=0;n<CONST_WA_COUNTRIES.codes.length;n++)
{
var blKCR=CONST_WA_COUNTRIES.codes[n]
var Hnvuv=CONST_WA_COUNTRIES.labels[n]
Translator.m_countries[blKCR]=Hnvuv
}
}
function Translator()
{
}
Translator.m_tr=new Array();
Translator.m_countries=new Array();
Translator.tr=function(k)
{
try
{
var v=Translator.m_tr[k]
if((v==undefined)||(v.length==0))return "@"+k;
v=v.replace(/\n/g,"<br>")
return v
}
catch(e){}
return k;
}
Translator.country=function(k)
{
try
{
var v=Translator.m_countries[k]
if((v==undefined)||(v.length==0))return "@"+k;
return v
}
catch(e){}
return k;
}
function WA_GraphicElement(OCSOQ,wKOKk,fcSAP)
{
this.OCSOQ=OCSOQ;
this.wKOKk=wKOKk
this.fcSAP=fcSAP;
this.ooPad=this.OCSOQ+"-div"
this.ppdcE=this.OCSOQ+"-canvas"
this.avguj=new Rect(0,0,0,0)
this.HRhdF=false;
this.fxGGF=false;
this.rUrxt=6;
this.ufmLi=false;
this.funYS=false;
this.CVxnt=false;
this.kAPvV="";
this.shadow=function()
{
return this.fcSAP;
}
this.marginShadow=function()
{
return this.rUrxt;
}
this.rect=function()
{
return this.avguj;
}
this.canvasId=function()
{
return this.ppdcE;
}
this.divId=function()
{
return this.ooPad;
}
this.opacity=function()
{
return this.ZCkdM;
}
this.img_clip=function()
{
return this.funYS;
}
this.img_src=function()
{
return this.ufmLi;
}
this.toHtml=function()
{
var pSlqw=""
pSlqw+="<div id='"+this.ooPad+"' style=\"";
pSlqw+="position:absolute;";
if(this.kAPvV.length>0)
{
pSlqw+="cursor:pointer;";
}
if(this.rect.x>0)pSlqw+="left:"+this.rect.x+"px;";
if(this.rect.y>0)pSlqw+="top:"+this.rect.y+"px;";
if(this.rect.width>0)pSlqw+="width:"+this.rect.width+"px;";
if(this.rect.height>0)pSlqw+="height:"+this.rect.height+"px;";
if(wKOKk)
pSlqw+="z-index:"+wKOKk+";";
pSlqw+="\" ";
if(this.kAPvV.length>0)
{
pSlqw+="onclick=\""+this.kAPvV+"\" "
}
pSlqw+=">";
if((this.rect.width>0)&&this.shadow())
{
pSlqw+=html_canvas(this.ppdcE,this.rect.width+2*this.rUrxt,this.rect.height+2*this.rUrxt)+"</div>";
}
else
{
pSlqw+=html_canvas(this.ppdcE,0,0)+"</div>";
}
return pSlqw
}
this.setImage=function(NjBZo,DMULM,hasEp)
{
if(hasEp==undefined)hasEp=0;
if((NjBZo==this.ufmLi)&&(this.funYS&&this.funYS.equals(DMULM))&&(this.CVxnt==hasEp))
{
return;
}
this.CVxnt=hasEp;
this.ufmLi=NjBZo;
this.funYS=DMULM;
this.cZBsU()
}
this.registerDynamicCanvas=function()
{
registerDynamicCanvas(this.ppdcE);
this.fxGGF=true;
this.setRect(this.avguj.x,this.avguj.y,this.avguj.width,this.avguj.height)
}
this.cZBsU=function()
{
if((this.avguj.width>0)&&(this.avguj.height>0))
{
this.draw()
}
this.HRhdF=true
};
this.draw=function(){};
this.setPosition=function(vPOiA,UTRUE)
{
this.avguj.x=vPOiA;this.avguj.y=UTRUE;
if(this.fxGGF==false)return
html_SetPosition(this.ooPad,this.avguj.x,this.avguj.y)
if(this.HRhdF==false)
{
this.cZBsU()
}
}
this.setOnClick=function(pSlqw)
{
this.kAPvV=pSlqw
}
this.width=function(){return this.avguj.width;}
this.height=function(){return this.avguj.height;}
this.setSize=function(DfPJl,PMejg)
{
this.avguj.width=DfPJl;this.avguj.height=PMejg;
var oHwAJ=DfPJl
var tWpdh=PMejg
if(this.fcSAP)
{
oHwAJ+=2*this.rUrxt
tWpdh+=2*this.rUrxt
}
if(this.fxGGF==false)return
html_SetSize(this.ooPad,oHwAJ,tWpdh)
html_SetCanvasSize(this.ppdcE,DfPJl,PMejg)
this.cZBsU()
}
this.setRect=function(vPOiA,UTRUE,DfPJl,PMejg)
{
this.avguj.x=vPOiA;this.avguj.y=UTRUE;this.avguj.width=DfPJl;this.avguj.height=PMejg;
var oHwAJ=DfPJl
var tWpdh=PMejg
var faQYD=vPOiA
var mKErU=UTRUE
if(this.fcSAP)
{
oHwAJ+=2*this.rUrxt
tWpdh+=2*this.rUrxt
faQYD-=this.rUrxt
mKErU-=this.rUrxt
}
if(this.fxGGF==false)return 
html_SetGeometry(this.ooPad,faQYD,mKErU,oHwAJ,tWpdh);
html_SetCanvasSize(this.ppdcE,oHwAJ,tWpdh)
try{this.cZBsU()}catch(e){
alert(e.message)
}
}
this.setVisible=function(LXLTi)
{
if(this.fxGGF==false)return
html_SetVisibility(this.ooPad,LXLTi)
}
this.setOpacity=function(pNrQe)
{
this.ZCkdM=pNrQe 
if(this.fxGGF==false)return
this.cZBsU()
}
}

function is_onresize()
{
WA_Dialog.resizeUI()
try
{
if(WA_PhotoAlbum_resizeUI)WA_PhotoAlbum_resizeUI()
}
catch(e){}
nVGXD()
}
function is_onscroll()
{
centerFullPageContainer();
}
function registerDynamicCanvas(id)
{
if(isMSIE())
G_vmlCanvasManager.initElement(document.getElementById(id));
}
function WA_openDialogAction(teSlo)
{
var BIQWX=WA_Dialog.XQwED;
if(teSlo==-1){BIQWX.closeWin();return;}
var PCdCw=BIQWX.sCcXu(teSlo);
if(PCdCw[5])
{
PCdCw[4].call(PCdCw[6],PCdCw[5])
}
else
{
PCdCw[4](PCdCw[5]);
}
}
function WA_Dialog(LXLTi_close_button)
{
this.FTnCQ=0;
this.iMhQN=0;
this.nrsJh_win_width=600;
this.nrsJh_win_height=400;
this.WaMRx=new Array();
this.AZEYK="wa-dialog-but-";
this.eRiYc=this.AZEYK+"div-";
this.QombU=this.AZEYK+"canvas-";
this.BUTTON_HEIGHT=22;
this.BKgRC=CONST_WA_GLOBAL_COLOR_THEME;
this.LXLTi_close_button=LXLTi_close_button;
this.Nirkn=6;
this.BKAJg=function()
{
if(this.LXLTi_close_button==undefined)this.LXLTi_close_button=true;
this.vPPDD();
}
this.resetButtons=function()
{
this.vPPDD();
}
this.idealHeight=function()
{
return this.ZfSKj
}
this.displayWindowWithAutoResize=function(HqRea,wauMB)
{
this.UpFsK=false
this.ZfSKj=HqRea
this.vmcfP=wauMB 
this.resetButtons();
wauMB.call(this)
var l=document.getElementById('wa-dialog-content');
if(this.UpFsK==false)
if(l.scrollHeight>200)
{
this.UpFsK=true
this.ZfSKj=l.scrollHeight+150
this.resetButtons();
wauMB.call(this)
}
}
this.initializeWindow=function(nrsJh_lx,nrsJh_ly)
{
if(WA_Dialog.XQwED)WA_Dialog.XQwED.closeWin()
WA_Dialog.XQwED=this;
this.nrsJh_win_width=nrsJh_lx;
this.nrsJh_win_height=nrsJh_ly;
this.RePIF()
}
this.progress=function()
{
this.initializeWindow(300,100)
this.writeContent("<div width=100% align=center><img src='wa_loading.gif'></div>")
}
this.QLTkX=function(mess)
{


this.initializeWindow(450,130)
var s=""
s+="<table border=0 style='width:100%;'><tr>";
s+="<td align=center style='"+this.cssText1()+"'>"
s+=mess
s+="</td></tr></table>"
this.writeContent(s)
}
this.addButton=function(Hnvuv,wWhDV,wCDBs,bLoAN)
{
var DcTog=this.WaMRx.length
if(this.LXLTi_close_button==true)
{
DcTog--;
}
var DfPJl=Math.max((Hnvuv.length*8)*1.2+30,80)
var RaLjt=new Size(DfPJl,this.BUTTON_HEIGHT);
this.YemgM("action_"+DcTog,DcTog,Hnvuv,wWhDV,RaLjt,wCDBs,bLoAN)
}
this.vPPDD=function()
{
this.WaMRx=new Array();
if(this.LXLTi_close_button)
{

var RaLjt=new Size(50,20);
this.YemgM("close",-1,"X",null,RaLjt)
}
}
this.YemgM=function(nSQpG,DcTog,Hnvuv,wWhDV,RaLjt,wCDBs,bLoAN)
{
var PCdCw=[nSQpG,RaLjt,DcTog,Hnvuv,wWhDV,wCDBs,bLoAN];
this.WaMRx.push(PCdCw);
}
this.writeContent=function(s)
{
var l=document.getElementById('wa-dialog-content');
l.innerHTML=s
}
this.sCcXu=function(nSQpG)
{
for(var teSlo=0;teSlo<this.WaMRx.length;teSlo++)
{
var PCdCw=this.WaMRx[teSlo];
if((PCdCw[0]==nSQpG)||(PCdCw[2]+""==nSQpG+""))
return PCdCw;
}
return undefined;
}
this.toRYe=function(nSQpG)
{
var PCdCw=this.sCcXu(nSQpG);
return PCdCw[1]
}
this.getColorTheme=function(teSlo)
{
return this.BKgRC[teSlo];
}
this.KMxiW=function(KTOAa)
{
var PCdCw=this.sCcXu(KTOAa);
var nSQpG=PCdCw[0];
var DcTog=PCdCw[2];
var duPfJ_text=this.BKgRC[4]
var duPfJ_bg=this.BKgRC[5]
var duPfJ_glow=this.BKgRC[7]
if(DcTog==-1)
{
duPfJ_text=this.BKgRC[10]
duPfJ_bg=this.BKgRC[8]
duPfJ_glow=this.BKgRC[11]
}
var Rsdlm=this.eRiYc+nSQpG;
var ttsDD=this.QombU+nSQpG;
var RaLjt=this.toRYe(KTOAa)
var stIwJ=0;
var s=""
s+="<a href='javascript:WA_openDialogAction("+KTOAa+")' ";
var duPfJ=new RGBColor(duPfJ_bg);
var dPXWN=duPfJ.toHsl();
duPfJ.fromHsl(dPXWN[0],dPXWN[1],dPXWN[2]+0.2)
duPfJ_bg=duPfJ.toRGB();
var VZZse_glow=new RGBColor(duPfJ_glow);
var nUIJs=VZZse_glow.toHsl();
VZZse_glow.fromHsl(nUIJs[0],nUIJs[1],nUIJs[2]+0.2)
duPfJ_glow=VZZse_glow.toRGB();
s+="onmouseover=\"WA_but_over('"+ttsDD+"','"+duPfJ_bg+"','"+duPfJ_glow+"')"+"\" ";
s+="onmouseout=\""+"WA_but_out('"+ttsDD+"')"+"\" ";
s+="style='text-decoration:none;'>";
s+="<div id='"+this.eRiYc+nSQpG+"' style='position:absolute;cursor:pointer;left:0px;top:0px;height:"+RaLjt.height+"px;width:"+RaLjt.width+"px;' >";
s+="<div style='position:absolute;left:"+(-stIwJ)+"px;top:"+(-stIwJ)+"px;height:"+RaLjt.height+"px;'>"
s+="<canvas id='"+this.QombU+nSQpG+"' width="+(RaLjt.width+stIwJ*2)+" height="+(RaLjt.height+stIwJ*2)+" ></canvas>";
s+="</div>"
s+="<div align=center style='position:absolute;left:0px;top:"+(0)+"px;vertical-align:middle;width:100%;height:"+(RaLjt.height)+"px;line-height:"+(RaLjt.height)+"px;font-family:arial;font-size:13px;font-weight:bold;color:"+duPfJ_text+"'>"
s+=PCdCw[3];
s+="</div>"
s+="</div>"
s+="</a>"
return s;
}
this.YZovD=function(nSQpG)
{
var PCdCw=this.sCcXu(nSQpG);
var DcTog=PCdCw[2];
var duPfJ_bg=this.BKgRC[5]
var duPfJ_glow=this.BKgRC[7]
var duPfJ_text=this.BKgRC[3]
if(DcTog==-1)
{
duPfJ_bg=this.BKgRC[8]
duPfJ_glow=this.BKgRC[11]
duPfJ_text=this.BKgRC[10]
}
var blKCR=this.QombU+nSQpG;
registerDynamicCanvas(blKCR);
var RaLjt=this.toRYe(nSQpG);
var MKpCL=RaLjt.height*0.25;
var vLPAn=true;
MKpCL=0;
vLPAn=false;
var gxvCk=0;
var WnccZ=(RaLjt.width-2);
var PMejg_circle_top=RaLjt.height*0.45;

var Ngwxg_top=[1,1,WnccZ,PMejg_circle_top,gxvCk];
var DfPJl_circle_bottom=RaLjt.width-2;
var PMejg_circle_bottom=RaLjt.height*0.45;
var RYsps=duPfJ_glow;
var IHidr=duPfJ_glow;
var xrjvS=0;

var Ngwxg_bottom=[(RaLjt.width-DfPJl_circle_bottom)/2,RaLjt.height-PMejg_circle_bottom-1,DfPJl_circle_bottom,PMejg_circle_bottom,xrjvS,RYsps,IHidr];
WA_but(blKCR,0,RaLjt.width,RaLjt.height,MKpCL,duPfJ_bg,Ngwxg_top,Ngwxg_bottom,vLPAn,0)
}
this.SMqFB=function(nSQpG)
{
var PCdCw=this.sCcXu(nSQpG)
if(PCdCw)
{
var blKCR=this.eRiYc+PCdCw[0];
return document.getElementById(blKCR);
}
return undefined
}
this.RePIF=function()
{
var l=document.getElementById('wa-dialog-container');
l.style.display="block" 

var s="";
var HMgIm=document.webaca_banner_height
s+="<div  style='position:absolute;left:0px;top:"+HMgIm+"px;width:100%;height:100%;background-color:#000000;filter:alpha(opacity=50);-moz-opacity:0.5;opacity:0.5;'></div>"
s+="<div id='wa-dialog-main' style='position:absolute;left:0px;top:"+HMgIm+"px;width:100px;height:100px;' >"
s+="<div style='position:absolute;left:0px;top:0px;width:100px;height:100px;' ><canvas id='wa-dialog1' width=100 height=100 ></canvas></div>"
for(var AYLvM in this.WaMRx)
{
s+=this.KMxiW(this.WaMRx[AYLvM][2]);
}
s+="<div id='wa-dialog-content' style='position:absolute;left:0px;top:0px;width:100px;" 
s+="overflow:auto;' ></div>"
s+="</div>"
l.innerHTML=s 
WA_exec_callback_opera_compliant(this,this.hmeLA)
}
this.hmeLA=function()
{
registerDynamicCanvas('wa-dialog1');
for(var AYLvM in this.WaMRx)
{
this.YZovD(this.WaMRx[AYLvM][0])
}
this.DMAla()
if(this.rXlPr())
{
document.body.scrollLeft=0
document.body.scrollTop=0
}
}
this.intern_closeWin=function()
{
var l=document.getElementById('wa-dialog-container');
l.style.display="none"
WA_Dialog.XQwED=false
}
this.closeWin=function()
{
this.intern_closeWin()
}
this.cssText1=function()
{
return "font-family:Arial;font-size:15px;color:"+this.BKgRC[3]+";";
}
this.onCustomKeypress=function(wOiAS)
{
if((this.WaMRx.length==1)&&(wOiAS==13))
{
this.closeWin()
return true;
}
return false;
}
this.onkeypress=function(wOiAS)
{
return this.onCustomKeypress(wOiAS)
}
this.onkeydown=function(wOiAS)
{
if(wOiAS==27)
{
this.closeWin()
return true;
}
return this.onCustomKeypress(wOiAS) 
}
this.customUpdate=function(){}
this.rXlPr=function()
{
return isIPhone();
}
this.DMAla=function()
{
var DfPJl_page=document.webaca_width_page;
var PMejg_page=document.webaca_height_page;
var ZkFOH=getWindowSize().width
var PMejg_window=getWindowSize().height
var EPXbb=getWindowFullSize().width
var PMejg_full_client=getWindowFullSize().height
var bTlWm=550;
var KjqEM=400;
ZkFOH=Math.max(ZkFOH,bTlWm);
PMejg_window=Math.max(PMejg_window,KjqEM);
if(this.rXlPr())
{
ZkFOH=600;
PMejg_window=700;
}
this.FTnCQ=Math.min(ZkFOH*0.9,this.nrsJh_win_width)
this.iMhQN=Math.min(PMejg_window*0.9,this.nrsJh_win_height)
var NjGJB=document.getElementById('wa-dialog1');
NjGJB.width=this.FTnCQ+10
NjGJB.height=this.iMhQN+10
var vPOiA=getWindowScroll().x+(ZkFOH-NjGJB.width)/2
var UTRUE=getWindowScroll().y+(PMejg_window-NjGJB.height)/2
vPOiA=(ZkFOH-NjGJB.width)/2
UTRUE=(PMejg_window-NjGJB.height)/2
vPOiA=Math.max(0,vPOiA)
UTRUE=Math.max(0,UTRUE)
if(this.rXlPr())
{
vPOiA=0
UTRUE=0;
}
var XCJvd=document.getElementById('wa-dialog-main');
html_SetGeometry('wa-dialog-main',vPOiA,UTRUE,NjGJB.width,NjGJB.height);
var ACdqM_bg="(0;0;0;"+this.iMhQN*0.25+";"+this.BKgRC[1]+";"+this.BKgRC[2]+")";
var WHZMA=4;
WA_bg('wa-dialog1',this.FTnCQ,this.iMhQN,WHZMA,3,this.BKgRC[0],[ACdqM_bg],true,0)
var omFLT=10;
var moTKX=this.SMqFB(-1)
if(moTKX)
{
var dtUGN_close=this.toRYe(-1) 
var marginClose=3
html_SetPosition(moTKX,this.FTnCQ-dtUGN_close.width-marginClose+this.Nirkn-1,marginClose+this.Nirkn-1)
}
var LAkxM_buttons=this.WaMRx.length;
if(this.LXLTi_close_button==true)
{
LAkxM_buttons--;
}
var YAlFK=10;
var oZjJw=0;
for(var AYLvM=0;AYLvM<LAkxM_buttons;AYLvM++)
{
if(AYLvM>0) oZjJw+=YAlFK;
var dtUGN=this.toRYe(AYLvM);
oZjJw+=dtUGN.width;
}
var cOsCQ=(this.FTnCQ-oZjJw)/2
for(var AYLvM=0;AYLvM<LAkxM_buttons;AYLvM++)
{
if(AYLvM>0) cOsCQ+=YAlFK;
var ThWxH=this.SMqFB(AYLvM);
var dtUGN=this.toRYe(AYLvM);
html_SetPosition(ThWxH,cOsCQ+this.Nirkn,+this.Nirkn+this.iMhQN-dtUGN.height-2*omFLT)
cOsCQ+=dtUGN.width;
}
var PMejg_top=45;
var PMejg_bottom=this.BUTTON_HEIGHT+2*omFLT;
if(LAkxM_buttons==0)
{
PMejg_bottom=0;
}
var PMejg_content=(this.iMhQN-PMejg_top-PMejg_bottom)-omFLT
var wPqtv=document.getElementById('wa-dialog-content');
var BIQWX_content=Math.round(this.FTnCQ-2*omFLT)
var cTbqF=Math.round(PMejg_content)
this.m_content_lx=BIQWX_content
this.m_content_ly=cTbqF
html_SetGeometry('wa-dialog-content',Math.round(5+(this.FTnCQ-BIQWX_content)/2),Math.round(5+PMejg_top+(PMejg_content-cTbqF)/2),BIQWX_content,cTbqF);
this.customUpdate() 
var llLXH=document.getElementById('wa-dialog-container');
var nAtjo=PMejg_full_client
nAtjo=Math.max(nAtjo,PMejg_window) 
var TdqZl=EPXbb
TdqZl=Math.max(TdqZl,ZkFOH)
if(this.rXlPr())
{
TdqZl=Math.max(TdqZl,DfPJl_page)
nAtjo=Math.max(nAtjo,PMejg_page)
}
html_SetSize('wa-dialog-container',TdqZl,nAtjo);
centerFullPageContainer();
}
this.BKAJg();
}
function centerFullPageContainer()
{
var oJNGM=WA_Dialog.getCurrent() 


var DfPJl_page=document.webaca_width_page;
var PMejg_page=document.webaca_height_page;
var llLXH=document.getElementById('wa-dialog-container');
if(/opera/i.test(navigator.userAgent))
{
if(llLXH.style.display=="none")return;
}
var EPXbb=getWindowSize().width 
var PMejg_full_client=getWindowSize().height
var UTRUE_bg=getWindowScroll().y;
var pMdpn=oJNGM&&oJNGM.rXlPr();
if(pMdpn)
{
UTRUE_bg=0
}
UTRUE_bg=Math.min(UTRUE_bg,PMejg_page-PMejg_full_client+1)
UTRUE_bg=Math.max(UTRUE_bg,0)
var wCsFi=getWindowScroll().x;
if(pMdpn)
{
wCsFi=0
}
wCsFi=Math.min(wCsFi,DfPJl_page-EPXbb+1)
wCsFi=Math.max(wCsFi,0)
html_SetPosition('wa-dialog-container',wCsFi,UTRUE_bg,EPXbb,PMejg_full_client);
}
function isOperaBrowser()
{
return(/opera/i.test(navigator.userAgent))
}
function WA_exec_callback_opera_compliant(wCDBs,gFWLe)
{
if(/opera/i.test(navigator.userAgent))
WA_exec_delayedCallback(wCDBs,gFWLe)
else
gFWLe.call(wCDBs)
}
function WA_exec_delayedCallback(wCDBs,gFWLe)
{
wa_timeout(Delegate.create(wCDBs,gFWLe),0);
}
WA_Dialog.getCurrent=function()
{
return WA_Dialog.XQwED;
}
WA_Dialog.XQwED=false;
WA_Dialog.resizeUI=function()
{
if(WA_Dialog.XQwED)
{
var oJNGM=WA_Dialog.XQwED
if(oJNGM.rXlPr()==false)
{
oJNGM.DMAla()
}
}
}
WA_Dialog.alert=function(s)
{
var w=new WA_Dialog();
w.QLTkX(s)
}
WA_Dialog.progress=function()
{
var w=new WA_Dialog(false);
w.progress()
}

function getXMLHttpRequest(fct_callback,bLoAN)
{
var http_request=false;
if(window.XMLHttpRequest){
http_request=new XMLHttpRequest();
if(http_request.overrideMimeType){
}
}else if(window.ActiveXObject){
try{http_request=new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
try{http_request=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}
}
if(!http_request)
{
alert('Cannot create XMLHTTP instance');
return false;
}
http_request.VCNQV=fct_callback
http_request.bLoAN=bLoAN
http_request.onreadystatechange=function()
{
var req=this 
if(req.readyState==4)
{
this.VCNQV(true,this,this.bLoAN) 

}
};
return http_request;
}
function makePOSTRequest(url,parameters,callback,nJOjd)
{
var http_request=getXMLHttpRequest(callback,nJOjd);
http_request.open('POST',url,true);
http_request.setRequestHeader("Content-type","application/x-www-form-urlencoded");
http_request.setRequestHeader("Content-length",parameters.length);
http_request.setRequestHeader("Connection","close");
http_request.send(parameters);
}
function intern_WA_responseForm(bBQbh,beGgZ,bLoAN)
{
var result=beGgZ.responseText
var n=result.indexOf("BEGIN_IS_PHP=1")
if(n==-1)
{
WA_Dialog.alert(Translator.tr("Error:No php on server"));
}
else
{
n=result.indexOf("mail_sended=1")
if(n>-1)
{
var wGlcS=bLoAN[0] 
WA_Dialog.alert(Translator.tr("Success:Mail sended"));
var form=document.getElementById(wGlcS);
form.reset()
}
else
{
var JKiBn="error_string="
n=result.indexOf(JKiBn)
if(n>-1)
{
result=result.substring(n+JKiBn.length)
n=result.indexOf("END_IS_PHP")
if(n>-1)
{
result=result.substring(0,n)
}
WA_Dialog.alert(result);
}
else
{
WA_Dialog.alert("*error send mail!");
}
}
}
}
function WA_form_action(id_form,action,b_email_is_valid)
{
var form=document.getElementById(id_form);
var poststr=""
for(var i=0;i<form.elements.length;i++)
{
var el=form.elements[i];
el.style.backgroundColor="#ffffff"
if((trimString(el.value).length==0)&&(el.name.indexOf("_mandatory")>-1))
{
el.style.backgroundColor="#ff0000";el.focus();return;
}
var KirNB=el.value
KirNB=encodeURI(KirNB)
KirNB=KirNB.replace(/&/g,escape("&")) 
poststr+=el.name.replace("_mandatory","")+"="+KirNB+"&"
}
if(b_email_is_valid==false)
{
WA_Dialog.alert(Translator.tr("Email have to be filled in order to the form works correctly"));return;
}
if(document.webaca_is_preview)
{
WA_Dialog.alert(Translator.tr("Operation not allowed in preview mode"));return;
}
WA_Dialog.progress();
makePOSTRequest(action,poststr,intern_WA_responseForm,[id_form]);
}
function WA_form_submit(jshFB)
{
var klIUp=document.getElementById(jshFB);
klIUp.submit() 
}
function tloCR(OCSOQ,bLoAN)
{
var wOiAS=bLoAN[0]
if(wOiAS==13)
{
var jshFB=OCSOQ+"-form";
var klIUp=document.getElementById(jshFB);
for(var i=0;i<klIUp.elements.length;i++)
{
var dbaRP=klIUp.elements[i];
if((dbaRP.type=="textarea")&&(dbaRP.focused))return true;
}
WA_form_submit(jshFB);
return false;
}
return true;
}
function WA_addFormDeclaration(OCSOQ,vCLTf)
{
return WA_addHandler(OCSOQ,"keypress",tloCR)
}
function WA_form_bg(id,lx,ly,arc,nAbrN,bord_col,bg,shadow,hasEp,jIKOT)
{
WA_bg(id,lx,ly,arc,nAbrN,bord_col,bg,shadow,hasEp,1.0,true) 
var Bhccr=jIKOT.x;
var TtZUH=0;
var SqtpE=jIKOT.cells
for(var n=0;n<SqtpE.length;n++)
{
var jVTKP=SqtpE[n]
var arc2=0
vwkrX(id,Bhccr,TtZUH+jVTKP.y,jIKOT.w,jVTKP.h,arc2,1,jIKOT.border,[''],false,0,1.0,false)
vwkrX(id,Bhccr,TtZUH+jVTKP.y,jVTKP.w,jVTKP.h,arc2,1,"rgba(0,0,0,0)",[jIKOT.bg],false,0,1.0,false)
}
}
function WA_form_reset(id_form)
{
var form=document.getElementById(id_form);
form.reset() 
}
var BrowserDetect={
init:function(){
this.browser=this.searchString(this.dataBrowser);
if(this.browser==undefined)
{
if(navigator.appName.search(/explorer/i)!=-1) this.browser="Explorer";
}
if(this.browser==undefined)
{
this.browser="An unknown browser";
}
this.version=this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"an unknown version";
this.OS=this.searchString(this.dataOS)||"an unknown OS";
},searchString:function(data){
for(var i=0;i<data.length;i++){
var dataString=data[i].string;var dataProp=data[i].prop;
this.versionSearchString=data[i].versionSearch||data[i].identity;
if(dataString){
if(dataString.indexOf(data[i].subString)!=-1)
return data[i].identity;
}
else if(dataProp)
return data[i].identity;
}
},searchVersion:function(dataString){
var index=dataString.indexOf(this.versionSearchString);
if(index==-1) return;
return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
},
dataBrowser:[
{string:navigator.userAgent,subString:"OmniWeb",versionSearch:"OmniWeb/",identity:"OmniWeb"},{string:navigator.vendor,subString:"Apple",identity:"Safari"},{prop:window.opera,identity:"Opera"},{string:navigator.vendor,subString:"iCab",identity:"iCab"},{string:navigator.vendor,subString:"KDE",identity:"Konqueror"},{string:navigator.userAgent,subString:"Firefox",identity:"Firefox"},{string:navigator.vendor,subString:"Camino",identity:"Camino"},{string:navigator.userAgent,subString:"Netscape",identity:"Netscape"},
{string:navigator.userAgent,subString:"MSIE",identity:"Explorer",versionSearch:"MSIE"},{string:navigator.userAgent,subString:"Gecko",identity:"Mozilla",versionSearch:"rv"},{string:navigator.userAgent,subString:"Mozilla",identity:"Netscape",versionSearch:"Mozilla"}
],dataOS:[
{string:navigator.platform,subString:"Win",identity:"Windows"},{string:navigator.platform,subString:"Mac",identity:"Mac"},{string:navigator.platform,subString:"Linux",identity:"Linux"}
]
};
BrowserDetect.init();
function RGBColor(noBLC)
{
this.ok=false;this.a=1.0;
if(noBLC.charAt(0)=='#'){noBLC=noBLC.substr(1);}
noBLC=noBLC.replace(/ /g,'');
noBLC=noBLC.toLowerCase();
var qdwcm=[
{re:/^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d{1,2}\.*\d{0,2})\)$/,_process:function(bits){return [ parseInt(bits[1]),parseInt(bits[2]),parseInt(bits[3]),parseFloat(""+bits[4]) ];}},{re:/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,_process:function(bits){return [ parseInt(bits[1]),parseInt(bits[2]),parseInt(bits[3])];}},{re:/^(\w{2})(\w{2})(\w{2})(\w{2})$/,_process:function(bits){return [ parseInt(bits[1],16),parseInt(bits[2],16),parseInt(bits[3],16),Math.round(parseInt(bits[4],16)*100/255)/100 ];}},{re:/^(\w{2})(\w{2})(\w{2})$/,_process:function(bits){return [ parseInt(bits[1],16),parseInt(bits[2],16),parseInt(bits[3],16) ];}}
];
for(var i=0;i<qdwcm.length;i++){
var sBInW=qdwcm[i].re;
var xdwjk=qdwcm[i]._process;
var kfPrQ=sBInW.exec(noBLC);
if(kfPrQ){
var wGbQJ=xdwjk(kfPrQ);
this.r=wGbQJ[0];this.g=wGbQJ[1];this.b=wGbQJ[2];this.a=wGbQJ[3];
this.ok=true;
}
}
this.r=(this.r<0||isNaN(this.r))?0:((this.r>255)?255:this.r);
this.g=(this.g<0||isNaN(this.g))?0:((this.g>255)?255:this.g);
this.b=(this.b<0||isNaN(this.b))?0:((this.b>255)?255:this.b);
this.a=(this.a>1||isNaN(this.a))?1:((this.a<0)?0:this.a);
this.toRGB=function()
{
if(this.a==1)return 'rgb('+this.r+', '+this.g+', '+this.b+')';
return 'rgba('+this.r+', '+this.g+', '+this.b+','+this.a+')';
}
this.toRGB_opaque=function()
{
return 'rgb('+this.r+', '+this.g+', '+this.b+')';
}
this.toHsl=function(){
var r=this.r;var g=this.g;var b=this.b;r/=255,g/=255,b/=255;
var max=Math.max(r,g,b),min=Math.min(r,g,b);
var h,s,l=(max+min)/2;
if(max==min){h=s=0;
}else{
var d=max-min;s=l>0.5?d/(2-max-min):d/(max+min);
switch(max){
case r:h=(g-b)/d+(g<b?6:0);break;
case g:h=(b-r)/d+2;break;
case b:h=(r-g)/d+4;break;
}
h/=6;
}
return [h,s,l];
}
this.iCuqR=function(p,q,t)
{
if(t<0) t+=1;if(t>1) t-=1;if(t<1/6) return p+(q-p)*6*t;if(t<1/2) return q;if(t<2/3) return p+(q-p)*(2/3-t)*6;
return p;
};
this.fromHsl=function(h,s,l){
if(l>1.0)l=1.0
var r,g,b;
if(s==0){r=g=b=l;
}else{
var q=l<0.5?l*(1+s):l+s-l*s;
var p=2*l-q;
r=this.iCuqR(p,q,h+1/3);g=this.iCuqR(p,q,h);b=this.iCuqR(p,q,h-1/3);
}
r=r*255;g=g*255;b=b*255;
r=Math.round(r);g=Math.round(g);b=Math.round(b);
if(r<0)r=-r;if(g<0)g=-g;if(b<0)b=-b
this.r=r;this.g=g;this.b=b;
};
}
function qqLln(kfcrH,bLoAN)
{
if(document.wa_global_handlers!=undefined)
{
var OCSOQ=WA_focused_element()
if(OCSOQ)
{
var wWhDV=document.wa_global_handlers[OCSOQ+"-"+kfcrH]
if(wWhDV) return wWhDV([OCSOQ],bLoAN)
}
}
return true;
}
function vMdje(e)
{
if(window.event){return e.keyCode;}
else 
if(e.which) return  e.which;
return-1;
}
function WA_onkeypress(e)
{
var wOiAS=vMdje(e);
if(WA_Dialog.XQwED)
{
if(WA_Dialog.XQwED.onkeypress(wOiAS))
{
return false;
}
}
return qqLln("keypress",[wOiAS]);
}
function WA_ondblclick(e)
{
return qqLln("dblclic",[""]);
}
function WA_onkeydown(e)
{
var wOiAS=vMdje(e)
if(WA_Dialog.XQwED)
{
if(WA_Dialog.XQwED.onkeydown(wOiAS))
{
return false;
}
}
if(wOiAS==13) return true;

if(wa_global_photo_album&&wa_global_photo_album.fullpage_object)
{
var wCDBs=wa_global_photo_album.fullpage_object
return wCDBs.onFullScreenKeydown(wOiAS) 
}
return qqLln("keydown",[wOiAS]);
}
function WA_genericMouseWheelHandler(e)
{
var delta=0;
if(!e) e=window.event;
if(e.wheelDelta){
delta=e.wheelDelta/120;
if(window.opera) delta=-delta;
}else if(e.detail){
delta=-e.detail/3;
}
if(navigator.userAgent.match(/opera/i)) delta=-delta;
var b_default=false;
if(delta)
{
if(document.wa_global_handlers!=undefined)
{
var OCSOQ=this.id
var wWhDV=document.wa_global_handlers[OCSOQ+"-mousewheel"]
if(wWhDV)
{
if(wWhDV([OCSOQ],[delta]))
{
b_default=true;
}
}
}
}
if(b_default)
if(e.preventDefault)
e.preventDefault();
e.returnValue=!b_default;
}
function WA_addHandler(OCSOQ,kfcrH,gFWLe)
{
if(document.wa_global_handlers==undefined) document.wa_global_handlers=new Array()
if(kfcrH=="mousewheel")
{
var IFdZd=document.getElementById(OCSOQ);
if(IFdZd.addEventListener)
IFdZd.addEventListener('DOMMouseScroll',WA_genericMouseWheelHandler,false);
IFdZd.onmousewheel=WA_genericMouseWheelHandler
}
document.wa_global_handlers[OCSOQ+"-"+kfcrH]=gFWLe
}
function WA_loadPhotoAlbum(OCSOQ,UwnhX,RaLjt,OCSOQ_modif)
{
if(typeof(wa_global_photo_album[OCSOQ])=="undefined")
{
var o=new Array();
o.src_folder=UwnhX
o.size_container=RaLjt
o.id_modif=OCSOQ_modif
wa_global_photo_album[OCSOQ]=o;
}
}
function WA_focused_element()
{
return document.wa_global_focused_element
}
function WA_focus(wCDBs)
{
document.wa_global_focused_element=wCDBs.id
}
function WA_loadScript(url,callback,params)
{
var e=document.createElement("script");
e.src=url;
e.type="text/javascript";
e.onerror=function(){callback(params,false);}
if(/msie/i.test(navigator.userAgent)&&!/opera/i.test(navigator.userAgent)){
e.onreadystatechange=function(){
if((this.readyState=='complete')||(this.readyState=='loaded')){
callback(params,true);
}
}
}else
{
e.onload=function(){
if(/opera/i.test(navigator.userAgent))
wa_timeout(callback,0,params,true);
else
callback(params,true);
}
}
document.getElementsByTagName("head")[0].appendChild(e);
}
function WA_blog_declare(Jqbtr,mEOXV,LQSQk)
{
if(!document.wa_global_blogs_elements)document.wa_global_blogs_elements=new Array()
if(!document.wa_global_blogs_buttons)document.wa_global_blogs_buttons=new Array()
if(!document.wa_global_blogs_elements[mEOXV])document.wa_global_blogs_elements[mEOXV]=new Array()
document.wa_global_blogs_elements[mEOXV].id_blog=Jqbtr
document.wa_global_blogs_elements[mEOXV].has_email=LQSQk
}
function WA_addSearchHandler(OCSOQ)
{
return WA_addHandler(OCSOQ,"keypress",UfQEJ)
}
function UfQEJ(OCSOQ,bLoAN)
{
var wOiAS=bLoAN[0]
if(wOiAS==13)
{
var sfmKo=OCSOQ+"-search-input";
WA_onSearch(sfmKo)
return false;
}
return true;
}
function WA_declareSearchIndex(DiAIf,wQYfU)
{
document.const_wa_search_js=DiAIf
document.const_wa_search_index_js=wQYfU
}
function WA_onSearch(sfmKo)
{
var vZbcO=document.getElementById(sfmKo);
if(document.wa_search_js_loaded==true)
{
WA_openSearchDialog(vZbcO,document.const_wa_search_index_js)
}
else
{
WA_Dialog.progress();
XYYbA(vZbcO)
}
}
function WiVGb(bLoAN)
{
document.wa_search_js_loaded=true
WA_openSearchDialog(bLoAN[0],document.const_wa_search_index_js)
}
function XYYbA(uRXgU)
{
WA_loadScript(document.const_wa_search_js,WiVGb,[uRXgU])
}
function jpPpO(offset){
var endstr=document.cookie.indexOf(";",offset);
if(endstr==-1)
endstr=document.cookie.length;
return unescape(document.cookie.substring(offset,endstr));
}
function WA_GetCookie(name)
{
var arg=name+"=";
var alen=arg.length;
var clen=document.cookie.length;
var i=0;
while(i<clen)
{
var j=i+alen;
if(document.cookie.substring(i,j)==arg)
return jpPpO(j);
i=document.cookie.indexOf(" ",i)+1;
if(i==0) break;
}
return "";
}
function WA_SetCookie(name,value){
var argv=WA_SetCookie.arguments;
var argc=WA_SetCookie.arguments.length;
var expires=(argc>2)?argv[2]:null;
var path=(argc>3)?argv[3]:null;
var domain=(argc>4)?argv[4]:null;
var secure=(argc>5)?argv[5]:false;
document.cookie=name+"="+escape(value)+((expires==null)?"":("; expires="+expires.toGMTString()))+((path==null)?"":("; path="+path))+((domain==null)?"":("; domain="+domain))+((secure==true)?"; secure":"");
}
function WA_bg_menu(OCSOQ)
{
var MXJFH=document.wa_global_menu_declaration[OCSOQ]
WA_bg(OCSOQ,MXJFH.root_lx,MXJFH.root_ly,MXJFH.root_corner,MXJFH.root_border,MXJFH.root_col_border,[MXJFH.root_bg],false,0)
var dbaRP=document.getElementById(MXJFH.id)
if(!dbaRP)return;
var c=dbaRP.getContext('2d');
c.lineWidth=1
c.strokeStyle=MXJFH.root_col_separator
var GfeuW=0.5;

var avJDV=MXJFH.root_sizes.length
if(MXJFH.root_extend==false)
{
avJDV--;
}
var saNEP=3;
for(var i=0;i<avJDV;i++)
{
var RaLjt=MXJFH.root_sizes[i] 

c.beginPath();
if(MXJFH.root_vertical==false)
{
GfeuW+=(RaLjt-1)
c.moveTo(GfeuW,saNEP)
c.lineTo(GfeuW,MXJFH.root_ly-saNEP)
}
else
{
GfeuW+=(RaLjt)
c.moveTo(saNEP,GfeuW-1,0)
c.lineTo(MXJFH.root_lx-saNEP,GfeuW-1)
}
c.closePath();
c.stroke()
}
}
function WA_declare_menu(OCSOQ,MXJFH)
{
if(!document.wa_global_menu_declaration)document.wa_global_menu_declaration=new Array();
MXJFH.id=OCSOQ
document.wa_global_menu_declaration[OCSOQ]=MXJFH
WA_bg_menu(OCSOQ)
}
function WA_declareMarket(OCSOQ,sQBoc,OCSOQ_modif)
{
if(typeof(wa_global_market.markets[sQBoc])=="undefined")
{
var o=new Array();
o.src_folder=sQBoc
o.id_modif=OCSOQ_modif 

o.id=OCSOQ
wa_global_market.markets[sQBoc]=o;
}
}
function WA_button_market_declare(OCSOQ,Hnvuv)
{
if(!document.wa_global_button_market_declaration)document.wa_global_button_market_declaration=new Array();
document.wa_global_button_market_declaration[OCSOQ]=Hnvuv
}
function tDEYx(c,img,vPOiA,UTRUE,DfPJl,PMejg,DMULM,SPQQd,pLrEc)
{
c.globalAlpha=SPQQd
if(pLrEc) c.clearRect(0,0,DfPJl,PMejg) 
if(SPQQd==0)return;
if(DMULM)
{
c.drawImage(img,DMULM.x,DMULM.y,DMULM.width,DMULM.height,vPOiA,UTRUE,DfPJl,PMejg)
}
else
{
c.drawImage(img,vPOiA,UTRUE,DfPJl,PMejg)
}
}
function WA_drawImage(id,NjBZo,vPOiA,UTRUE,DfPJl,PMejg,DMULM,SPQQd,pLrEc)
{
if(pLrEc==undefined)pLrEc=true;
if(SPQQd==undefined)SPQQd=1.0;
var el=document.getElementById(id)
if(!el)return
var c=el.getContext('2d');
c.shadowOffsetX=0;c.shadowOffsetY=0;c.shadowBlur=0;
if(c.old_src==NjBZo)
{
tDEYx(c,c.IDMHO,vPOiA,UTRUE,DfPJl,PMejg,DMULM,SPQQd,pLrEc)
return;
}
var img=new Image();
img.DdoQN=el.DdoQN
img.onload=function()
{
c.old_src=NjBZo
c.IDMHO=this;
tDEYx(c,this,vPOiA,UTRUE,DfPJl,PMejg,DMULM,SPQQd,pLrEc)
}
img.src=NjBZo;
}

-->
