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(h){if(!c.files[h]){c.files[h]=true;h=c.base+h+".js";c.util.loadJs(h)}});c.util.loadCss(c.base+"res/cj.css");c.vp=c.util.getVP()},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.cancelBubble=true;a.stopPropagation&&a.stopPropagation()}},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.b.scrollLeft,y: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;for(var 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;break}}},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){if(a.firstChild)for(;a.firstChild;)a.firstChild.firstChild?this.removeChild(a.firstChild):a.removeChild(a.firstChild);a.parentNode.removeChild(a)},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=1E4;cj.util.setStyle(cj.mask,
{width:b.ws.w,height: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:-10000,top:-10000})}},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}return b},fixPng:function(){if(cj.isIE)for(var a=0;a<document.images.length;a++){var c=
document.images[a];if(c.src.toUpperCase().indexOf(".PNG")>0){alert(c.src);var b=c.width,d=c.height,f=c.className.toLowerCase().indexOf("scale")>=0?"scale":"image";c.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+c.src.replace("%23","%2523").replace("'","%27")+"', sizingMethod='"+f+"')";c.src="../inc/images/blank.gif";c.width=b;c.height=d}}}},ajax:{open:function(a){var c=this.getReq();if(c){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(){}}}catch(b){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(){}}};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,h,g,j;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);h=b.util.getMousePos(c);g=b.util.getElmPos(a);j=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";b.bodyMask.style.display="none";d.style.overflow="auto";b.evt.cancel(c)});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-h.x;dy=p.y-h.y;l=Math.max(l,e.x-g.x);l=Math.min(l,e.x+e.w-g.x-j.w);dy=Math.max(dy,e.y-g.y);dy=Math.min(dy,e.y+e.h-g.y-j.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 h=f[1],g=e.getAttribute("title");
if(!g){alert(f[0]+" title not set");return false}f=cj.util.getElmPos(e);var j={w:100,h:30};f.x+=e.offsetWidth;switch(h){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,j,3);return false}case "text":if(e.value==""){e.focus();cj.popMsg.init(g+cj.form.msg.not_null[b],f,j,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,j,3);return false}break;case "email":if(!cj.form.isEmail(e.value)){e.focus();
cj.popMsg.init(cj.form.msg.valid[b]+g,f,j,3);return false}break;case "account":if(!cj.form.isAccount(e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+g,f,j,3);return false}break;case "password":if(!cj.form.isPasswd(e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+g,f,j,3);return false}if(e.getAttribute("confirm"))if(g=a[e.getAttribute("confirm")])if(e.value!=g.value){g.focus();cj.popMsg.init(cj.form.msg.valid[b]+g.getAttribute("title"),f,j,3);return false}break;case "checkbox":if(!e.checked){e.focus();
cj.popMsg.init(e.getAttribute("title"),f,j,3);return false}break;case "creditCard":h=document.getElementById(e.getAttribute("cardName"));if(!h){alert("Attribute : cardName not set");return false}if(!cj.form.checkCreditCard.check(h.value,e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+g,f,j,3);return false}break;case "sid":if(!cj.form.isSid(e.value)){e.focus();cj.popMsg.init(cj.form.msg.valid[b]+g,f,j,3);return false}break}}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){var c=12E5;c=12E4;cj.uid=a||"null";postData="a=updateUid&uid="+a;cj.ajax.open({URL:"ajax",postData:postData,cb:function(b){try{var d=eval(b.responseText),f=new Date;cj.d.cookie.toString();var e=/uid=([^;]*)/.exec(cj.d.cookie);if(d.uid){f.setTime(f.getTime()+31536E6);cj.uid=d.uid;cj.d.cookie=e?cj.d.cookie.replace(/(uid=[^;]*;?\s?)/,"$1 expires="+f.toUTCString()+" ;"+cj.d.cookie):"uid="+d.uid+"; expires="+f.toUTCString()+" ;"+cj.d.cookie;setTimeout(function(){cj.updateUid(d.uid)},
c)}}catch(h){}}})}};
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 h={},g={},j={};e[0]="HTML_SPECIALCHARS";e[1]="HTML_ENTITIES";h[0]="ENT_NOQUOTES";h[2]="ENT_COMPAT";h[3]="ENT_QUOTES";g=!isNaN(a)?e[a]:a?a.toUpperCase():"HTML_SPECIALCHARS";j=!isNaN(c)?h[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(j!=="ENT_NOQUOTES")b["34"]="&quot;";if(j==="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};

