jQuery.noConflict();
function nullValue(B,A){return(B==null)?A:B
}function mathMax(B,A){return(B>A)?B:A
}function mathMin(B,A){return(B<A)?B:A
}function mathAbs(A){return(A<0)?-A:A
}function mathBoundary(C,A,B){return mathMin(mathMax(C,A),B)
}function inBoundary(C,A,B){return(C>=A)&&(C<=B)
}var MILLISECONDS_PER_DAY=24*60*60*1000;
function formatDate(B,A){if(A==null){A="."
}return B.getDate()+A+(B.getMonth()+1)+A+B.getFullYear()
}function truncateDate(A){return new Date(Date.UTC(A.getUTCFullYear(),A.getUTCMonth(),A.getUTCDate()))
}function getDateCount(B,A){return Math.floor(((A==undefined)?B:(A-B))/MILLISECONDS_PER_DAY)
}function dateEquals(B,A){return B.getTime()==A.getTime()
}function showElement(B,A){B.style.visibility=((A==undefined)||A)?"visible":"hidden"
}function hideElement(B,A){B.style.visibility=((A==undefined)||A)?"hidden":"visible"
}function getTextNode(B,C){var A=document.createTextNode(((C==undefined)||(C==""))?" ":C);
B.appendChild(A);
return A
}function setText(A,B){A.replaceData(0,A.length,B)
}function clearWindowTimeout(A){if(A!=undefined){clearTimeout(A)
}};