function Jax()
{var loadingTimeout=400;var iframe;this.loadingFunction=function(){};this.doneLoadingFunction=function(){};this.stringify=function(arg){var c,i,l,o,u,v;switch(typeof arg){case'object':if(arg){if(arg.constructor==Array){o='';for(i=0;i<arg.length;++i){v=this.stringify(arg[i]);if(o&&(v!==u)){o+=',';}
if(v!==u){o+=v;}}
return'['+o+']';}else if(typeof arg.toString!='undefined'){o='';for(i in arg){v=this.stringify(arg[i]);if(v!==u){if(o){o+=',';}
o+=this.stringify(i)+':'+v;}}
return'{'+o+'}';}else{return;}}
return'';case'unknown':case'undefined':case'function':return u;case'string':arg=arg.replace(/"/g,"\\\"");l=arg.length;o='"';for(i=0;i<l;i+=1){c=arg.charAt(i);if(c>=' '){if(c=='\\'||c=='"'){o+='\\';}
o+=c;}else{switch(c){case'"':o+='\\"';break;case'\b':o+='\\b';break;case'\f':o+='\\f';break;case'\n':o+='\\n';break;case'\r':o+='\\r';break;case'\t':o+='\\t';break;default:c=c.charCodeAt();o+='\\u00';o+=Math.floor(c/16).toString(16);o+=(c%16).toString(16);}}}
return o+'"';default:return String(arg);}}
this.getRequestObject=function()
{if(window.XMLHttpRequest){http_request=new XMLHttpRequest();}else if(window.ActiveXObject){var msxmlhttp=new Array('Msxml2.XMLHTTP.4.0','Msxml2.XMLHTTP.3.0','Msxml2.XMLHTTP','Microsoft.XMLHTTP');for(var i=0;i<msxmlhttp.length;i++){try{http_request=new ActiveXObject(msxmlhttp[i]);}catch(e){http_request=null;}}}
if(!http_request){alert('Unfortunatelly you browser doesn\'t support this feature.');return false;}
return http_request;}
this.$=function(sId)
{if(!sId){return null;}
var returnObj=document.getElementById(sId);if(!returnObj&&document.all){returnObj=document.all[sId];}
return returnObj;}
this.addEvent=function(obj,type,fn){if(obj.attachEvent){obj['e'+type+fn]=fn;obj[type+fn]=function(){obj['e'+type+fn](window.event);}
obj.attachEvent('on'+type,obj[type+fn]);}else{obj.addEventListener(type,fn,false);}}
this.removeEvent=function(obj,type,fn){if(obj.detachEvent){obj.detachEvent('on'+type,obj[type+fn]);obj[type+fn]=null;}else{obj.removeEventListener(type,fn,false);}}
this.submitITask=function(comName,func,postData,responseFunc){var xmlReq=this.buildXmlReq(comName,func,postData,responseFunc,true);this.loadingFunction();if(!this.iframe){this.iframe=document.createElement('iframe');this.iframe.setAttribute("id",'ajaxIframe');this.iframe.setAttribute("height",0);this.iframe.setAttribute("width",0);this.iframe.setAttribute("border",0);this.iframe.style.visibility='hidden';document.body.appendChild(this.iframe);this.iframe.src=xmlReq;}else{this.iframe.src=xmlReq;}}
this.extractIFrameBody=function(iFrameEl){var doc=null;if(iFrameEl.contentDocument){doc=iFrameEl.contentDocument;}else if(iFrameEl.contentWindow){doc=iFrameEl.contentWindow.document;}else if(iFrameEl.document){doc=iFrameEl.document;}else{alert("Error: could not find sumiFrame document");return null;}
return doc.body;}
this.buildXmlReq=function(comName,func,postData,responseFunc,iframe){var xmlReq='';if(iframe){xmlReq+='?';}
else{xmlReq+='&';}
xmlReq+='option='+comName;xmlReq+='&no_html=1';xmlReq+='&task=azrul_ajax';xmlReq+='&func='+func;if(postData){xmlReq+="&"+postData;}
return xmlReq;}
this.submitTask=function(comName,func,postData,responseFunc){var xmlhttp=this.getRequestObject();var targetUrl=jax_live_site;xmlhttp.open('POST',targetUrl,true);xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4){if(xmlhttp.status==200){jax.doneLoadingFunction();jax.processResponse(xmlhttp.responseText);}else{}}}
var id=1;var xmlReq=this.buildXmlReq(comName,func,postData,responseFunc);this.loadingFunction();xmlhttp.setRequestHeader('Content-Type','application/x-www-form-urlencoded');xmlhttp.send(xmlReq);}
this.processIResponse=function(){jax.doneLoadingFunction();var resp=(this.extractIFrameBody(this.iframe).innerHTML);resp=resp.replace(/&lt;/g,"<");resp=resp.replace(/&gt;/g,">");resp=resp.replace(/&amp;/g,"&");resp=resp.replace(/&quot;/g,'"');resp=resp.replace(/&#39;/g,"'");this.processResponse(resp);}
this.processResponse=function(responseTxt){var result=eval(responseTxt);for(var i=0;i<result.length;i++){var cmd=result[i][0];var id=result[i][1];var property=result[i][2];var data=result[i][3];var objElement=this.$(id);switch(cmd){case'as':if(objElement){eval("objElement."+property+"=  data \; ");}
break;case'al':if(data){alert(data);}
break;case'ce':this.create(id,property,data);break;case'rm':this.remove(id);break;case'cs':var scr=id+'(';if(this.isArray(data)){scr+='(data[0])';for(var l=1;l<data.length;l++){scr+=',(data['+l+'])';}}else{scr+='data';}
scr+=');';eval(scr);break;default:alert("Unknow command: "+cmd);}}
delete responseTxt;}
this.isArray=function(obj){if(obj){return obj.constructor==Array;}
return false;}
this.buildCall=function(comName,sFunction){}
this.icall=function(comName,sFunction){var arg="";if(arguments.length>2){for(var i=2;i<arguments.length;i++){var a=arguments[i];if(this.isArray(a)){arg+="arg"+i+"="+this.stringify(a)+"&";}else if(typeof a=="string"){var t=new Array('_d_',encodeURIComponent(a));arg+="arg"+i+"="+this.stringify(t)+"&";}else{var t=new Array('_d_',encodeURIComponent(a));arg+="arg"+i+"="+this.stringify(t)+"&";}}}
if(jax_site_type=='1.5'){this.submitTask(comName,sFunction,arg);}else{this.submitITask(comName,sFunction,arg);}}
this.call=function(comName,sFunction){var arg="";if(arguments.length>2){for(var i=2;i<arguments.length;i++){var a=arguments[i];if(this.isArray(a)){arg+="arg"+i+"="+this.stringify(a)+"&";}else if(typeof a=="string"){a=a.replace(/"/g,"&quot;");var t=new Array('_d_',encodeURIComponent(a));arg+="arg"+i+"="+this.stringify(t)+"&";}else{var t=new Array('_d_',encodeURIComponent(a));arg+="arg"+i+"="+this.stringify(t)+"&";}}}
this.submitTask(comName,sFunction,arg);}
this.create=function(sParentId,sTag,sId){var objParent=this.$(sParentId);objElement=document.createElement(sTag);objElement.setAttribute('id',sId);if(objParent){objParent.appendChild(objElement);}}
this.remove=function(sId){objElement=this.$(sId);if(objElement&&objElement.parentNode&&objElement.parentNode.removeChild)
{objElement.parentNode.removeChild(objElement);}}
this.getFormValues=function(frm){var objForm;objForm=this.$(frm);if(!Array.prototype.indexOf)
{Array.prototype.indexOf=function(elt)
{var len=this.length;var from=Number(arguments[1])||0;from=(from<0)?Math.ceil(from):Math.floor(from);if(from<0)
from+=len;for(;from<len;from++)
{if(from in this&&this[from]===elt)
return from;}
return-1;};}
var postData=new Array();if(objForm&&objForm.tagName=='FORM'){var formElements=objForm.elements;var assCheckbox=new Array();var assCntIdx=0;if(formElements.length>0){for(var i=0;i<formElements.length;i++)
{if(!formElements[i].name)
{continue;}
if(formElements[i].type&&(formElements[i].type=='radio'||formElements[i].type=='checkbox')&&formElements[i].checked==false)
{continue;}
var name=formElements[i].name;if(name)
{if(formElements[i].type=='select-multiple')
{postData[i]=new Array();for(var j=0;j<formElements[i].length;j++)
{if(formElements[i].options[j].selected===true)
{var value=formElements[i].options[j].value;postData[i][j]=new Array(name,encodeURIComponent(value));}}}
else if(formElements[i].type=='checkbox')
{if(assCheckbox.indexOf(formElements[i].name)==-1)
{assCheckbox[assCntIdx]=formElements[i].name
assCntIdx++;}}
else
{var value=formElements[i].value;value=value.replace(/"/g,"&quot;");postData[i]=new Array(name,encodeURIComponent(value));}}}}
if(assCheckbox.length>0)
{for(var i=0;i<assCheckbox.length;i++)
{var objCheckbox=document.getElementsByName(assCheckbox[i]);if(objCheckbox)
{if(objCheckbox.length>1)
{var tmpIdx=0;var curLen=postData.length;postData[curLen]=new Array();for(var j=0;j<objCheckbox.length;j++)
{if(objCheckbox[j].checked)
{var value=objCheckbox[j].value;value=value.replace(/"/g,"&quot;");postData[curLen][j]=new Array(assCheckbox[i],encodeURIComponent(value));tmpIdx++;}}}
else
{if(objCheckbox[0].checked)
{var value=objCheckbox[0].value;value=value.replace(/"/g,"&quot;");postData[postData.length]=new Array(assCheckbox[i],encodeURIComponent(value));}}}}}}
return postData;}}
function jax_iresponse(){jax.processIResponse();}
var jax=new Jax();
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('6 1z;6 1l=2m;7 2v(d){6 U=4.$("10");6 h=3I(U.b.J);5(!h&&U.1g)h=U.1g;5(d>0)h+=15;g h-=15;5(h<20)h=30;U.b.J=h+"1N";5(1l>0){1l=1l-15;T(\'2v(\'+d+\')\',3)}g{1l=2m}}7 2U(){2n(1z);13(\'1y\',0,n,0);4.$("1y").I="";6 1s=8.1q(\'w\');1s.1j(\'1m\',3J);1s.1j(\'a\',"2Q");4.$("1y").28(1s)}7 3L(){6 t=4.$("2Q");5(t!=L){t.3G.2B(t)}}7 3F(a){6 e=4.$(a);5(e.b.F==\'1Q\')e.b.F=\'1w\';g e.b.F=\'1Q\'}7 3B(a){6 e=4.$(a);5(e!=L)e.b.F=\'1w\'}7 3A(){6 1U="3C";6 2P=12;6 1Y=\'\';1n(6 i=0;i<2P;i++){6 25=1H.3E(1H.3M()*1U.j);1Y+=1U.1X(25,25+1)}A 1Y}7 3X(){4.11(\'16\',\'3Y\',4.$(\'10\').f);A}7 3U(){2U();4.11(\'16\',\'3P\',4.3O(\'3z\'));5(4.$("u")){5(4.$("u").f){1b(\'u\',4.$("u").f,14)}}5(4.$("y")){5(4.$("y").f){1b(\'y\',4.$("y").f,14)}}5(4.$("C")){5(4.$("C").f){1b(\'C\',4.$("C").f,14)}}6 1W=G;5(4.$("2T"))1W=4.$("2T").3S;5(!1W){1p("u");1p("y");1p("C")}A}7 2Y(){5(4.$("2G")!=L&4.$("2I")!=L&4.$("2J")){4.11(\'16\',\'3n\',4.$("2G").f,4.$("2I").f,4.$("2J").I)}}7 3p(1c,2W,a){4.11(\'16\',\'3l\',1c,2W);5(4.$(1c)!="W"){4.$(1c).b.3q="3w 3v #3t";13(1c,n,3k,3s)}}7 3r(){5(Y(1V)!="W"){1V.2K();6 w=4.$("3u");5(w!=L){6 o=w.1m;5(1V.U.1g>0){o=o.1C("1D.N","1h.N")}g{o=o.1C("1h.N","1D.N")}w.1m=o}}}7 3m(){5(Y(23)!="W"){23.2K();6 w=4.$("3Q");5(w!=L){6 o=w.1m;5(23.U.1g>0){o=o.1C("1D.N","1h.N")}g{o=o.1C("1h.N","1D.N")}w.1m=o}}}7 4u(){5(4.$("u"))4.$("u").l=G;5(4.$("y"))4.$("y").l=G;5(4.$("C"))4.$("C").l=G;5(4.$("1O"))4.$("1O").l=G;5(4.$("10"))4.$("10").l=G;5(4.$("1G"))4.$("1G").l=G;5(4.$("1F"))4.$("1F").l=G}7 4q(){5(4.$("u"))4.$("u").l=S;5(4.$("y"))4.$("y").l=S;5(4.$("C"))4.$("C").l=S;5(4.$("1O"))4.$("1O").l=S;5(4.$("10"))4.$("10").l=S;5(4.$("1G"))4.$("1G").l=S;5(4.$("1F"))4.$("1F").l=S}7 4p(1I,a){6 x=8.1q(\'s\');x.I=1I;4.$(a).I=x.2C.I}7 4v(1I,a){6 1J=4.$("4x");6 x=8.1q(\'s\');x.I=1I;5(2p.2X.1R(\'2q\')==-1)2r(0,x.b);5(4D=="0"){1J.4A(x,1J.2C)}g{1J.28(x)}x.1j("a",a);5(2p.2X.1R(\'2q\')==-1)13(a,0,n,2o)}7 4l(){2n(1z);1z=T("13(\'1y\', n, 0,2c)",49)}7 13(a,18,17,2i){6 26=1H.4m(2i/n);6 19=0;5(18>17){1n(i=18;i>=17;i--){T("1Z("+i+",\'"+a+"\')",(19*26));19++}}g 5(18<17){1n(i=18;i<=17;i++){T("1Z("+i+",\'"+a+"\')",(19*26));19++}}}7 1Z(k,a){6 q=4.$(a).b;q.k=(k/n);q.2s=(k/n);q.2y=(k/n);q.2z="2A(k="+k+")"}7 2r(k,q){q.k=(k/n);q.2s=(k/n);q.2y=(k/n);q.2z="2A(k="+k+")"}7 1b(Z,f,22){6 1x="";5(22){6 1M=4k 4h();1M.4g(1M.4c()+(22*24*2t*2t*2c));6 1x="; 1x="+1M.4d()}8.2S=Z+"="+f+1x+"; 4e=/"}7 4f(Z){6 1S=8.2S.4o(\';\');6 1T=Z+"=";1n(6 i=0;i<1S.j;i++){6 c=1S[i];2F(c.39(0)==\' \')c=c.1X(1,c.j);5(c.1R(1T)==0)A c.1X(1T.j,c.j)}A""}7 1p(Z){1b(Z,"",-1)}7 37(){5((Y 34!="W")&&4a){T("2Y()",34)}}7 42(H,9){6 1k=4.$(9).f;1k=1k+H;4.$(9).f=1k}7 41(D,E,9){5(Y(9.m)!="W"&&9.45){6 m=9.m,36=m.H.j;m.H=m.H.39(m.H.j-1)==\' \'?D+m.H+E+\' \':D+m.H+E;5(36==0){m.4C("32",-E.j);m.4z("32",-E.j);m.4y()}g 9.1P(m)}g 5(Y(9.1d)!="W"){6 2Z=9.f.27(0,9.1d);6 1t=9.f.27(9.1d,9.35-9.1d);6 31=9.f.27(9.35);6 1e=9.1d;6 3f=9.1r;9.f=2Z+D+1t+E+31;5(9.21){5(1t.j==0)9.21(1e+D.j,1e+D.j);g 9.21(1e,1e+D.j+1t.j+E.j);9.1P()}9.1r=3f}g{9.f+=D+E;9.1P(9.f.j-1)}}7 4r(3j){6 e=4.$(3j);5(!e.b.F||e.b.F==\'1w\'){e.b.F=\'1Q\';e.b.1B=\'2k\'}g{e.b.F=\'1w\';e.b.1B=\'3d\'}}T("37()",3R);7 2l(1K,K,J){Q=4.$("R");5(!Q){Q=8.1q(\'s\');Q.1j("a","R");Q.1j("b","3e:3g;3b:3g;2w:2x;1B:3d;");6 p=\'<3c a="3H"4B="0" 3D="0" K="n%"><33>\';p+=\'<3h 3T="2" a="2j">\';p+=\'<s 2a="3o">3y</s>\';p+=\'		 <s 2a="3x">\';p+=\'			<s a="3i" 2a="3i">\';p+=\'				40 4s\';p+=\'			</s>\';p+=\'		 </s>\';p+=\'</3h></33>\';p+=\'</3c>\';Q.I=p;8.B.28(Q)}6 1u=0,1a=0;5(Y(V.38)==\'4n\'){1u=V.38;1a=V.2f}g 5(8.r&&(8.r.1v||8.r.P)){1u=8.r.1v;1a=8.r.P}g 5(8.B&&(8.B.1v||8.B.P)){1u=8.B.1v;1a=8.B.P}6 X;5(V.2f!=L){X=V.2f}g 5(8.r&&8.r.P){X=8.r.P}g{X=8.B.P}X=X-47;6 O=4.$("R");O.b.J=\'4b\';O.b.K=K+\'1N\';6 2d=4.$(1K);6 h=V.4j||8.B.1r||8.r.1r;O.b.3b=(h+(1a-O.1g)/2-3k)+\'1N\';O.b.3e=(2L(2d)+((2d.2u-O.2u)/2))+\'1N\';O.b.2w=\'2x\'}7 4i(1K,2e,K,J){5(!K)K=44;5(!J)J=43;2l(1K,K,J);4.$(\'R\').b.1B=\'2k\';5(2e){4.$(\'2j\').I=2e}4.$(\'R\').b.29=2O()+1}7 48(){13(\'R\',n,0,2o);T(\'8.B.2B(4.$(\\\'R\\\'))\',2c)}7 2O(){6 2h=8.2R?8.2R("*"):8.4w;6 1E=0;1n(6 i=0;i<2h.j;i++){6 z=2h[i];6 1f=L;5(z.2V){1f=z.2V}g 5(8.2b&&8.2b.2N){1f=8.2b.2N(z,"")}6 1i;5(1f){1i=2M(1f.29)}g{1i=2M(z.b.29)}5(!4t(1i)){1E=1H.1h(1E,1i)}}A 1E}7 2g(M){6 1A=1L=0;5(M.2E){1A=M.2D;1L=M.2H;2F(M=M.2E){1A+=M.2D;1L+=M.2H}}A[1A,1L]}7 2L(z){6 1o=2g(z);A 1o[0]}7 46(z){6 1o=2g(z);A 1o[1]}7 3Z(a){4.11(\'16\',\'3W\',a,\'3a\',V.3V+\'#1k-\'+a)}7 3N(a,v){4.11(\'16\',\'3K\',v,a,\'3a\')}',62,288,'||||jax|if|var|function|document|textarea|id|style||||value|else|||length|opacity|disabled|caretPos|100|imgSrc|html|object|documentElement|div||jc_name||img|newCmt|jc_email|elem|return|body|jc_website|text1|text2|display|true|text|innerHTML|height|width|null|obj|gif|iframe|clientHeight|Obj|jcAzrulWindow|false|setTimeout|el|window|undefined|yPos|typeof|name|jc_comment|call||jcOpacity|||jomcomment|opacEnd|opacStart|timer|myHeight|jc_createCookie|postId|selectionStart|newCursorPos|cStyle|offsetHeight|max|sNum|setAttribute|comment|jcTextareHeight|src|for|pos|jc_eraseCookie|createElement|scrollTop|newImg|selection|myWidth|clientWidth|none|expires|jc_busyDiv|jcFadeTimer|curleft|visibility|replace|min|maxZIndex|jc_submit|jc_password|Math|entry|comment_div|anchor|curtop|date|px|jc_title|focus|block|indexOf|ca|nameEQ|chars|jc_commentArea|rememberMe|substring|randomstring|jcChangeOpac||setSelectionRange|days|jc_commentFormArea||rnum|speed|substr|appendChild|zIndex|class|defaultView|1000|curWin|content|innerHeight|jcFindPos|allElems|millisec|jcAzrulWindowContent|visible|azrulWindowInit|65|clearTimeout|500|navigator|Safari|jcChangeStyleOpac|MozOpacity|60|offsetWidth|jcResizeComment|position|absolute|KhtmlOpacity|filter|alpha|removeChild|firstChild|offsetLeft|offsetParent|while|jc_contentid|offsetTop|jc_option|jc_numComment|toggle|jcGetPosX|Number|getComputedStyle|jcGetZIndexMax|string_length|jc_busyImg|getElementsByTagName|cookie|jc_rememberInfo|jc_showBusyImage|currentStyle|opt|userAgent|jc_update|begin||end|character|tr|jc_update_period|selectionEnd|temp_length|jc_init|innerWidth|charAt|com_content|top|table|hidden|left|scrollPos|10px|td|dialog_body|divName|50|jcxUnpublish|jc_commentFormToggle|jcxUpdateComment|dialog_header|jc_unpublishPost|border|jc_commentAreaToggle|200|FF0000|toggleAreaImg|solid|medium|dialog_content|Loading|jc_commentForm|jcRandomString|jc_hide_block|0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz|cellspacing|floor|jc_toggle_visibility|parentNode|jcAzrulWindowtable|parseInt|jc_livesite_busyImg|jcxVote|jc_removeBusyImage|random|jcVt|getFormValues|jcxAddComment|toggleFormImg|20000|checked|colspan|addComments|location|jcxReport|previewComment|jcxPreviewComment|jcRpt|Please|jc_encloseText|jc_addText|300|350|createTextRange|jcGetPosY|120|azrulHideWindow|3000|jc_autoUpdate|auto|getTime|toGMTString|path|jc_readCookie|setTime|Date|azrulShowWindow|pageYOffset|new|jc_fadeMessage|round|number|split|jc_showComment|jc_enableForm|jc_toggleDiv|wait|isNaN|jc_disableForm|jc_insertNewEntry|all|jc_commentsDiv|select|moveEnd|insertBefore|cellpadding|moveStart|jc_orderBy'.split('|'),0,{}))
