cj={version:"1.0",modify:"2009/04/17",files:{},elm:[],init:function(a){var c=this,b=navigator,d=b.userAgent;c.d=document;c.w=window;c.b=c.d.documentElement||c.d.body;c.isOpera=c.w.opera&&opera.buildNumber;c.isWebKit=/WebKit/.test(d);c.isIE=!c.isWebKit&&!c.isOpera&&/MSIE/gi.test(d)&&/Explorer/gi.test(b.appName);c.isIE6=c.isIE&&/MSIE [56]/.test(d);c.isIE7=c.isIE&&/MSIE [7]/.test(d);c.isGecko=!c.isWebKit&&/Gecko/.test(d);c.isMac=d.indexOf("Mac")!=-1;c.isAir=/adobeair/i.test(d);d=document.getElementsByTagName("script");
for(var f=0,e=d.length;f<e;f++)if((b=d[f].src)&&/cj\.js/.test(b)){c.base=b.substring(0,b.lastIndexOf("/"))+"/";break}a&&a.require&&c.util.each(a.require.split(","),function(j){if(!c.files[j]){c.files[j]=true;j=c.base+j+".js";c.util.loadJs(j)}});c.util.loadCss(c.base+"res/cj.css");c.vp=c.util.getVP();c.isIE6&&cj.evt.add(cj.w,"load",c.util.fixPng)},evt:{guid:1,add:function(a,c,b){if(a.addEventListener)a.addEventListener(c,b,false);else if(a.attachEvent)a.attachEvent("on"+c,b);else{if(!b.$$guid)b.$$guid=
this.guid++;if(!a.events)a.events={};var d=a.events[c];if(!d){d=a.events[c]={};if(a["on"+c])d[0]=elme["on"+c]}d[b.$$guid]=b;a["on"+c]=this.handleEvent}return b},remove:function(a,c,b){if(a.removeEventListener)a.removeEventListener(c,b,false);else a.events&&a.events[c]&&delete a.events[c][b.$$guid]},cancel:function(a){a.preventDefault&&a.preventDefault();a.stopPropagation&&a.stopPropagation();a.cancelBubble=true;a.returnValue=false}},util:{is:function(a,c){return typeof a==c},getMousePos:function(a){return a.pageX&&
a.x?{x:a.pageX,y:a.pageY}:{x:a.clientX+this.getScrollPos().x,y:a.clientY+this.getScrollPos().y}},getScrollPos:function(){return{x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}},getWindowSize:function(){var a=cj.d.documentElement||cj.d.body;return{w:a.scrollWidth,h:a.scrollHeight}},getSize:function(a){var c,b;c=a.style.width;b=a.style.height;if(c.indexOf("px")===-1)c=0;if(b.indexOf("px")===-1)b=0;return{w:parseInt(c)||a.offsetWidth||
a.clientWidth,h:parseInt(b)||a.offsetHeight||a.clientHeight}},getVP:function(){return{x:cj.w.pageXOffset||cj.b.scrollLeft,y:cj.w.pageYOffset||cj.b.scrollTop,w:cj.w.innerWidth||cj.b.clientWidth,h:cj.w.innerHeight||cj.b.clientHeight,ws:{w:cj.b.scrollWidth,h:cj.b.scrollHeight},sp:{x:cj.w.pageXOffset||cj.b.scrollLeft,y:cj.w.pageYOffset||cj.b.scrollTop}}},getElmSize:function(a){return{w:a.clientWidth,h:a.clientHeight}},getPos:function(a){for(var c=y=0;a;){if(a.style.left)return{x:parseInt(a.style.left)||
0,y:parseInt(a.style.top)||0};if(a.style.left){c+=parseInt(a.style.left)||0;y+=parseInt(a.style.top)||0;break}else{c+=a.offsetLeft;y+=a.offsetTop}a=a.offsetParent}return{x:c,y:y}},getElmPos:function(a){for(var c=y=0;a;){c+=a.offsetLeft;y+=a.offsetTop;a=a.offsetParent}return{x:c,y:y}},getAbsPos:function(a){return{x:parseInt(a.style.left)||0,y:parseInt(a.style.top)||0}},getStyle:function(a,c){if(a.currentStyle)return a.currentStyle[c];else if(cj.w.getComputedStyle)return cj.d.defaultView.getComputedStyle(a,
null).getPropertyValue(c);return x},setStyle:function(a,c){var b=a.style,d;for(d in c){v=c[d];switch(d){case "opacity":this.setOpacity(a,v);break;case "zIndex":b.zIndex=v;break;default:if(cj.util.is(v,"number")||/^[\-0-9\.]+$/.test(v))v+="px";b[d]=v}}},fix_ieflash:function(){for(var a=document.getElementsByTagName("object"),c=0;c<a.length;c++)a[c].outerHTML=a[c].outerHTML},loadJs:function(a){o=this.addElm(document.getElementsByTagName("head")[0],[{tag:"script",attrib:"type:text/javascript;src:"+a}])},
loadCss:function(a){a=a||"";var c=document.getElementsByTagName("head")[0];this.each(a.split(","),function(b){if(!cj.files[b]){cj.files[b]=true;cj.util.addElm(c,{tag:"link",attrib:"rel:stylesheet;type:text/css;href:"+b})}})},addElm:function(a,c){var b,d;if(this.is(c,"string")||!c.length)d=a.appendChild(this.createElm(c));else{d=a.appendChild(this.createElm(c[0]));b=1;for(var f=c.length;b<f;b++)this.addElm(d,c[b])}return d},createElm:function(a){var c,b=document;c=this.is(a,"string")?b.createTextNode(a):
b.createElement(a.tag);if(a.id){c.id=a.id;cj.elm[a.id]=c}if(a.cssText)c.style.cssText=a.cssText;if(a["class"])c.className=a["class"];if(a.innerHTML)c.innerHTML=a.innerHTML;a.style&&this.setStyle(c,a.style);a.attrib&&cj.util.each(a.attrib.split(";"),function(d){if(d.indexOf(":")!=-1){n=d.indexOf(":");k=d.substr(0,n).replace(/\s+/g);v=d.substr(n+1,d.length);c.setAttribute(k,v)}});return c},removeChild:function(a){try{if(a.firstChild)for(;a.firstChild;)a.firstChild.firstChild?this.removeChild(a.firstChild):
a.removeChild(a.firstChild);a.parentNode.removeChild(a)}catch(c){}},setOpacity:function(a,c){if(a)if(c<0.1)a.style.display="none";else if(typeof a.style.opacity!="undefined")a.style.opacity=c==1?0.9999999:c;else if(typeof a.style.MozOpacity!="undefined")a.style.MozOpacity=c==1?0.9999999:c;else if(typeof a.style.KhtmlOpacity!="undefined")a.style.KhtmlOpacity=c;else a.style.filter="alpha(opacity="+Math.floor(c*100)+")";else alert("setOpacity : o is nto defined")},each:function(a,c,b){if(!a)return 0;
b=b||a;if(typeof a.length!="undefined")for(var d=0,f=a.length;d<f;d++){if(c.call(b,a[d],d,a)===false)return 0}else for(d in a)if(a.hasOwnProperty(d))if(c.call(b,a[d],d,a)===false)return 0;return 1},ieMask:function(a){var c=a.style,b;b=this.addElm(cj.d.body,{tag:"iframe","class":"cjIEMask",attrib:'frameBorder:0,src:javascript:""'});cj.util.setStyle(b,{width:cj.util.getElmSize(a).w,height:cj.util.getElmSize(a).h,left:c.left,top:c.top,zIndex:c.zIndex-1,opacity:0});a.ieMask=b},winMask:function(a){a.showMask=
function(){var c=this.style||{},b=cj.util.getVP();if(!cj.mask)cj.mask=cj.util.addElm(cj.d.body,{tag:"div","class":"cjIEMask"});if(!c.zIndex)c.zIndex=1E3;cj.util.setStyle(cj.mask,{width:Math.max(b.w,b.ws.w),height:Math.max(b.h,b.ws.h),left:0,top:0,opacity:0.1,visibility:"visible",zIndex:c.zIndex-1});cj.fade.fps=20;cj.fade.start(cj.mask,0.2,0.1,0.6)};a.hideMask=function(){cj.mask&&cj.util.setStyle(cj.mask,{visibility:"hidden",left:-1E4,top:-1E4})}},disableSelect:function(){if(!cj.d.onselectstart)cj.d.onselectstart=
function(){return false};if(!cj.d.onmousedown)cj.d.onmousedown=function(){return false}},enableSelect:function(){if(cj.d.onselectstart)cj.d.onselectstart=null;if(cj.d.onmousedown)cj.d.onmousedown=null},countDown:{init:function(){if(this.n=cj.d.getElementById("cjCountDown")){this.n.sec=this.n.getAttribute("sec");this.start()}},start:function(){this.n.sec=Math.max(1,this.n.sec);this.n.innerHTML=this.n.sec;this.n.sec--;setTimeout(function(){cj.util.countDown.start()},1E3)}},getElementsByIds:function(a,
c){var b={},d=a.split(",");for(i=0;i<d.length;i++)if(!(b[d[i]]=cj.d.getElementById(d[i]))){c&&alert(d[i]+"not found!");return null}b.toString=function(){return a};return b},fixPng:function(){if(cj.isIE6){var a=cj.d.getElementsByTagName("*"),c=/\.png/i;cj.util.each(a,function(b){var d=b.style,f=b.currentStyle,e=f.backgroundImage;if(b.src&&b.src.match(c)&&!d.filter){d.height=b.height;d.width=b.width;d.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+b.src+"',sizingMethod='crop')";b.src=
"images/blank.gif"}else if(e.match(c)){e=e.split('"');var j=f.backgroundRepeat=="no-repeat"?"crop":"scale",g=b.getElementsByTagName("*"),h=g.length;d.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+e[1]+"',sizingMethod='"+j+"')";d.height=b.clientHeight+"px";d.backgroundImage="none";if(h!=0){if(f.position!="absolute")d.position="static";for(;h-- >0;)if(!g[h].style.position)g[h].style.position="relative"}}})}},releaseSelection:function(){cj.d.selection&&cj.d.selection.empty&&cj.d.selection.empty();
if(cj.w.getSelection){var a=cj.w.getSelection();a.removeAllRanges&&a.removeAllRanges()}}},ajax:{open:function(a){var c=this.getReq();if(c){if(!a.disableLoadding){var b=cj.loadding.newPlayer();b.timer=setTimeout(function(){b.stop();alert("\u9023\u7dda\u903e\u6642\uff0c\u7cfb\u7d71\u66ab\u6642\u7121\u6cd5\u56de\u61c9\u60a8\u7684\u8981\u6c42\u3002\n\u8acb\u91cd\u65b0\u6574\u7406\u7db2\u9801\u5f8c\uff0c\u518d\u8a66\u4e00\u6b21\u3002")},1E4);b.play()}a.onStart&&a.onStart();method=a.postData?"POST":"GET";
c.open(method,a.URL,true);c.setRequestHeader("User-Agent","XMLHTTP");a.postData&&c.setRequestHeader("Content-type","application/x-www-form-urlencoded");c.onreadystatechange=function(){if(cj.isIE6)try{if(typeof c.responseText=="string"){setTimeout(function(){a.onComplete&&a.onComplete(c);a.cb&&a.cb(c)},100);c.onreadystateChange=function(){};if(!a.disableLoadding){b.stop();clearTimeout(b.timer)}}}catch(d){alert("Connection timeout, please try again")}else if(this.readyState===4||typeof this.readyState==
"undefined"){setTimeout(function(){a.onComplete&&a.onComplete(c);a.cb&&a.cb(c)},100);c.onreadystateChange=function(){};if(!a.disableLoadding){b.stop();clearTimeout(b.timer)}}};c.readyState!=4&&c.send(a.postData)}},getReq:function(){for(var a=null,c=[function(){return new XMLHttpRequest},function(){return new ActiveXObject("Msxml2.XMLHTTP")},function(){return new ActiveXObject("Msxml3.XMLHTTP")},function(){return new ActiveXObject("Microsoft.XMLHTTP")}],b=0;b<c.length;b++){try{a=c[b]()}catch(d){continue}break}return a}},
drag:function(a,c){c=c||cj.w.event;var b=this,d=cj.d.documentElement||b.d.body,f,e,j,g,h;e=b.util.getVP();e.w-=2;e.h-=2;f=b.util.getSize(d);f.w=Math.max(e.w,f.w);f.h=Math.max(e.h,f.h);j=b.util.getMousePos(c);g=b.util.getElmPos(a);h=b.util.getSize(a);f=b.isIE6?"iframe":"div";if(!b.bodyMask)b.bodyMask=cj.util.addElm(b.d.body,{tag:f,"class":"cjBodyMask",style:{opacity:0.5}});b.util.setStyle(b.bodyMask,{width:e.w+"px",height:e.h+"px",zIndex:parseInt(a.style.zIndex)-100,display:"block"});if(!a.cp)a.cp=
cj.util.addElm(b.d.body,{tag:f,"class":"cjMoveMask",style:{opacity:0.5}});b.util.setStyle(a.cp,{width:a.style.width,height:a.style.height,left:a.style.left,top:a.style.top,zIndex:parseInt(a.style.zIndex)+1,display:"block"});b.util.disableSelect();mu=b.evt.add(cj.d,"mouseup",function(){b.util.enableSelect();b.evt.remove(cj.d,"mouseup",mu);b.evt.remove(cj.d,"mousemove",mm);b.util.setStyle(a,{width:a.cp.style.width,height:a.cp.style.height,left:a.cp.style.left,top:a.cp.style.top});a.cp.style.display=
"none";a.blur();b.bodyMask.focus();b.bodyMask.style.display="none";d.style.overflow="auto";b.evt.cancel(c);cj.util.releaseSelection()});mm=b.evt.add(b.d,"mousemove",function(m){var l=dy=0;m=m||cj.w.event;var p=cj.util.getMousePos(m);l=p.x-j.x;dy=p.y-j.y;l=Math.max(l,e.x-g.x);l=Math.min(l,e.x+e.w-g.x-h.w);dy=Math.max(dy,e.y-g.y);dy=Math.min(dy,e.y+e.h-g.y-h.h);if(l+dy!=0){a.cp.style.left=g.x+l+"px";a.cp.style.top=g.y+dy+"px"}b.evt.cancel(m)});b.evt.cancel(c)},fade:{fps:10,start:function(a,c,b,d){a.steps=
(d-b)/(c*this.fps);a.timer=null;this.dofade(a,b,d)},dofade:function(a,c,b){var d;d=a.steps>0;c+=a.steps;cj.util.setOpacity(a,c);if(d^c-b>0)a.timer=setTimeout(function(){cj.fade.dofade(a,c,b)},1E3/this.fps);else{clearTimeout(a.timer);a.timer=null}}},popMsg:{div:null,move:10,timer:null,holdTime:3E3,init:function(a,c,b,d){this.size=b||{w:100,h:20};if(d)this.holdTime=d*1E3;this.clear();this.div=cj.util.addElm(cj.d.body,{tag:"div","class":"cjPopMsg",innerHTML:a,style:{left:c.x,top:c.y}});this.show()},
show:function(a){var c,b;a=a||1;if(this.div.offsetWidth<this.size.w){c=Math.abs(this.size.w/this.move*a);b=Math.abs(this.size.h/this.move*a);cj.util.setStyle(this.div,{width:c,height:b});this.timer=setTimeout(function(){cj.popMsg.show(++a)},1)}else this.timer=setTimeout(function(){cj.popMsg.clear()},this.holdTime)},clear:function(){if(this.div){clearTimeout(this.timer);this.timer=null;cj.d.body.removeChild(this.div);this.div=null}}},form:{chk:function(a,c){if(!a)return false;if(typeof a.lang=="undefined"||
!a.lang){alert("lang not set");return false}for(var b=a.lang.value,d=0;d<c.length;d++){var f=c[d].split(","),e=a[f[0]];if(!e){alert(f[0]+" not set");return false}var j=f[1];if(!j){alert(f[1]+" not set");return false}var g=e.getAttribute("title");if(!g){alert(f[0]+" title not set");return false}f=cj.util.getElmPos(e);var h={w:100,h:30};f.x+=e.offsetWidth;switch(j){case "num":e.value=cj.form.trim(e.value);if(!cj.form.isNumber(e.value)){e.focus();cj.popMsg.init(g+cj.form.msg.not_number[b],f,h,3);return false}case "text":if(e.value==
""){e.focus();cj.popMsg.init(g+cj.form.msg.not_null[b],f,h,3);return false}break;case "date":if(!cj.form.isDate(e.value)){e.focus();cj.popMsg.init(g+cj.form.msg.not_null[b],f,h,3);return false}break;case "email":if(!cj.form.isEmail(e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+g,f,h,3);return false}break;case "account":if(!cj.form.isAccount(e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+g,f,h,3);return false}break;case "password":if(!cj.form.isPasswd(e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+
g,f,h,3);return false}if(e.getAttribute("confirm"))if(g=a[e.getAttribute("confirm")])if(e.value!=g.value){g.focus();cj.popMsg.init(g.getAttribute("title"),f,h,3);return false}break;case "checkbox":if(!e.checked){e.focus();cj.popMsg.init(e.getAttribute("title"),f,h,3);return false}break;case "creditCard":j=document.getElementById(e.getAttribute("cardName"));if(!j){alert("Attribute : cardName not set");return false}if(!cj.form.checkCreditCard.check(j.value,e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+
g,f,h,3);return false}break;case "sid":if(!cj.form.isSid(e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+g,f,h,3);return false}}}return true},isEmail:function(a){return/^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$/i.test(a)},isAccount:function(a){if(/[^a-z^A-Z^0-9^\.]/.test(a))return false;return/[a-zA-Z0-9\.]{6,30}/.test(a)},isPasswd:function(a){return/.{6,30}/.test(a)},isNumber:function(a){return/^\d+\.?\d*$/.exec(a)},isSid:function(a){code=[10,11,12,13,14,15,
16,17,34,18,19,20,21,22,35,23,24,25,26,27,28,29,0,30,31,0];a=a.toLowerCase();if(a.length!=10)return false;re=/[a-z]/;if(!a.charAt(0).match(re))return false;re=/[0-9]/;for(i=1;i<10;i++)if(!a.charAt(i).match(re))return false;id0=code[a.charAt(0).charCodeAt(0)-97];if(!id0)return false;return!((10-a.charAt(9)-(Math.floor(id0/10)+id0%10*9+a.charAt(1)*8+a.charAt(2)*7+a.charAt(3)*6+a.charAt(4)*5+a.charAt(5)*4+a.charAt(6)*3+a.charAt(7)*2+a.charAt(8)*1)%10)%10)},trim:function(a){return a.replace(/\s/g,"")},
msg:{not_null:{tw:" \u5fc5\u586b ",en:" is required! "},valid:{tw:" \u8acb\u8f38\u5165\u6709\u6548\u7684 ",en:" Please specify valid "},day:{tw:"\u65e5\u671f",en:"Date"},not_number:{tw:" \u4e0d\u662f\u6578\u5b57",en:" is not number"}},isDate:function(a){return/\d{4}[\/-]\d{2}[[\/-]\d{2}/.text(a)}},updateUid:function(a){cj.uid_timer&&clearTimeout(cj.uid_timer);a=a||{u:"ajax",uid:0,cb:null};a.u=a.u||"ajax";a.uid=a.uid||cj.uid||1;postData="a=updateUid&uid="+a.uid;cj.ajax.open({URL:a.u,postData:postData,
disableLoadding:1,cb:function(c){debug&&cj.debug.log.add(c.responseText,1);try{r=eval(c.responseText);if(r.uid){cj.uid=r.uid;cj.uid_timer=setTimeout(function(){cj.updateUid({u:a.u,uid:cj.uid})},12E5);a.cb&&a.cb()}}catch(b){}}})}};
cj.flashObj={init:function(a){this.src=a.src;this.width=a.w;this.height=a.h;this.version="7,0,14,0";this.flashVars=this.id=null;this.params=a.params.split(",")||[];return this},setVersion:function(a){this.version=a},setId:function(a){this.id=a},setBgcolor:function(a){this.bgcolor=a},setFlashvars:function(a){this.flashVars=a},toString:function(){var a=new String;if(cj.isIE){a+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';if(this.id!=null)a+='id="'+this.id+'" ';a+='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+
this.version+'" ';a+='width="'+this.width+'" ';a+='height="'+this.height+'" />';a+='<param name="movie" value="'+this.src+'" />';a+='<param name="quality" value="high" />';a+='<param name="wmode" value="transparent" />';for(var c=0;c<this.params.length/2;c++)a+='<param name="'+this.params[c*2]+'" value="'+this.params[c*2+1]+'" />';if(this.flashVars!=null)a+='<param name="flashvars" value="'+this.flashVars+'" />';a+="</object>"}else{allowfullscreen="true";a+='<embed src="'+this.src+'" ';if(this.id!=
null)a+='name="'+this.id+'" ';a+='quality="high" wmode="transparent" ';a+='width="'+this.width+'" ';a+='height="'+this.height+'" ';a+='type="application/x-shockwave-flash" ';for(c=0;c<this.params.length/2;c++)a+=this.params[c*2]+'="'+this.params[c*2+1]+'" ';if(this.flashVars!=null)a+='flashvars="'+this.flashVars+'" ';a+='pluginspage="http://www.macromedia.com/go/getflashplayer">';a+="</embed>"}return a},write:function(a){a&&this.init(a);cj.d.write(this.toString())}};
Function.prototype.clone=function(){var a=this,c=function(){return a.apply(this,arguments)};c.prototype=a.prototype;for(property in a)if(a.hasOwnProperty(property)&&property!=="prototype")c[property]=a[property];return c};function html_entity_decode(a,c){var b={},d="",f="",e="";f=a.toString();if(false===(b=this.get_html_translation_table("HTML_ENTITIES",c)))return false;delete b["&"];b["&"]="&amp;";for(d in b){e=b[d];f=f.split(e).join(d)}return f=f.split("&#039;").join("'")}
function get_html_translation_table(a,c){var b={},d={},f=0,e="";e={};var j={},g={},h={};e[0]="HTML_SPECIALCHARS";e[1]="HTML_ENTITIES";j[0]="ENT_NOQUOTES";j[2]="ENT_COMPAT";j[3]="ENT_QUOTES";g=!isNaN(a)?e[a]:a?a.toUpperCase():"HTML_SPECIALCHARS";h=!isNaN(c)?j[c]:c?c.toUpperCase():"ENT_COMPAT";if(g!=="HTML_SPECIALCHARS"&&g!=="HTML_ENTITIES")throw Error("Table: "+g+" not supported");b["38"]="&amp;";if(g==="HTML_ENTITIES"){b["160"]="&nbsp;";b["161"]="&iexcl;";b["162"]="&cent;";b["163"]="&pound;";b["164"]=
"&curren;";b["165"]="&yen;";b["166"]="&brvbar;";b["167"]="&sect;";b["168"]="&uml;";b["169"]="&copy;";b["170"]="&ordf;";b["171"]="&laquo;";b["172"]="&not;";b["173"]="&shy;";b["174"]="&reg;";b["175"]="&macr;";b["176"]="&deg;";b["177"]="&plusmn;";b["178"]="&sup2;";b["179"]="&sup3;";b["180"]="&acute;";b["181"]="&micro;";b["182"]="&para;";b["183"]="&middot;";b["184"]="&cedil;";b["185"]="&sup1;";b["186"]="&ordm;";b["187"]="&raquo;";b["188"]="&frac14;";b["189"]="&frac12;";b["190"]="&frac34;";b["191"]="&iquest;";
b["192"]="&Agrave;";b["193"]="&Aacute;";b["194"]="&Acirc;";b["195"]="&Atilde;";b["196"]="&Auml;";b["197"]="&Aring;";b["198"]="&AElig;";b["199"]="&Ccedil;";b["200"]="&Egrave;";b["201"]="&Eacute;";b["202"]="&Ecirc;";b["203"]="&Euml;";b["204"]="&Igrave;";b["205"]="&Iacute;";b["206"]="&Icirc;";b["207"]="&Iuml;";b["208"]="&ETH;";b["209"]="&Ntilde;";b["210"]="&Ograve;";b["211"]="&Oacute;";b["212"]="&Ocirc;";b["213"]="&Otilde;";b["214"]="&Ouml;";b["215"]="&times;";b["216"]="&Oslash;";b["217"]="&Ugrave;";
b["218"]="&Uacute;";b["219"]="&Ucirc;";b["220"]="&Uuml;";b["221"]="&Yacute;";b["222"]="&THORN;";b["223"]="&szlig;";b["224"]="&agrave;";b["225"]="&aacute;";b["226"]="&acirc;";b["227"]="&atilde;";b["228"]="&auml;";b["229"]="&aring;";b["230"]="&aelig;";b["231"]="&ccedil;";b["232"]="&egrave;";b["233"]="&eacute;";b["234"]="&ecirc;";b["235"]="&euml;";b["236"]="&igrave;";b["237"]="&iacute;";b["238"]="&icirc;";b["239"]="&iuml;";b["240"]="&eth;";b["241"]="&ntilde;";b["242"]="&ograve;";b["243"]="&oacute;";
b["244"]="&ocirc;";b["245"]="&otilde;";b["246"]="&ouml;";b["247"]="&divide;";b["248"]="&oslash;";b["249"]="&ugrave;";b["250"]="&uacute;";b["251"]="&ucirc;";b["252"]="&uuml;";b["253"]="&yacute;";b["254"]="&thorn;";b["255"]="&yuml;"}if(h!=="ENT_NOQUOTES")b["34"]="&quot;";if(h==="ENT_QUOTES")b["39"]="&#39;";b["60"]="&lt;";b["62"]="&gt;";for(f in b){e=String.fromCharCode(f);d[e]=b[f]}return d};

