";
if(_24=="disable"){
var _26="A network issue has disabled network connections for this page. Please reload this page or contact the site administrator";
}else{
var _26="A network issue has occurred which canceled your last request";
}
try{
if(document.getElementById("mybic_notification")){
document.getElementById("mybic_notification").style.display="block";
}else{
var _27=document.createElement("div");
_27.innerHTML=_25;
document.body.appendChild(_27);
}
document.getElementById("mybic_notif_msg").innerHTML=_26;
}
catch(e){
alert("Network Unavailable: Please re-load page or contact the site administrator");
}
};
XMLHTTP.prototype.showDebug=function(msg,_29,_2a){
if(ajaxObj.debug==1){
if(!document.getElementById("mybic_debug")){
var _2b=document.createElement("div");
_2b.id="mybic_errs";
var deb=document.createElement("div");
deb.id="mybic_debug";
deb.style.border="thick solid black";
deb.style.backgroundColor="#eeeeee";
deb.style.padding="10px";
deb.style.margin="75px 10px 10px 10px";
deb.style.width="90%";
deb.style.position="absolute";
deb.style.zIndex="999";
deb.innerHTML+="MyBic Debugger: hide/show me!";
deb.innerHTML+=" Clear";
deb.innerHTML+=" Expand All";
deb.innerHTML+=" Contract All
";
deb.appendChild(_2b);
if(document.body){
document.body.appendChild(deb);
}else{
document.lastChild.appendChild(deb);
}
}
var deb=document.getElementById("mybic_errs");
if(msg=="new"){
ajaxObj.debugID++;
var _2d="+";
deb.innerHTML+="
"+_2d+" label"+ajaxObj.debugID+": "+_29+"
";
}else{
deb.innerHTML+="
"+msg+"
";
}
}
};
XMLHTTP.prototype.debug_expand=function(el){
var deb=document.getElementById("mybic_errs");
var _30=deb.childNodes.length;
if(el=="none"||el=="block"){
var _31="mybic_debug";
var _32=deb.getElementsByTagName("a");
var _33=_32.length;
for(var q=0;q<_33;q++){
_32[q].innerHTML=(el=="none")?"+":">";
}
}else{
var _31=el.parentNode.id;
_31=_31.split("_");
_31="mybic_debug"+_31[1];
}
for(var i=0;i<_30;i++){
try{
if(deb.childNodes[i].className.match(new RegExp("(^"+_31+".*$)"))){
if(el=="none"||el=="block"){
deb.childNodes[i].style.display=el;
}else{
if(deb.childNodes[i].style.display=="block"){
el.innerHTML="+";
deb.childNodes[i].style.display="none";
}else{
el.innerHTML=">";
deb.childNodes[i].style.display="block";
}
}
}
}
catch(e){
}
}
};
XMLHTTP.prototype.restart=function(){
ajaxObj.stopRequest=0;
ajaxObj.call("","","queue");
};
var JSON=function(){
var m={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r","\"":"\\\"","\\":"\\\\"},s={"boolean":function(x){
return String(x);
},number:function(x){
return isFinite(x)?String(x):"null";
},string:function(x){
if(/["\\\x00-\x1f]/.test(x)){
x=x.replace(/([\x00-\x1f\\"])/g,function(a,b){
var c=m[b];
if(c){
return c;
}
c=b.charCodeAt();
return "\\u00"+Math.floor(c/16).toString(16)+(c%16).toString(16);
});
}
return "\""+x+"\"";
},object:function(x){
if(x){
var a=[],b,f,i,l,v;
if(x instanceof Array){
a[0]="[";
l=x.length;
for(i=0;i