var Util=new UTIL();
function UTIL(){
}
UTIL.prototype.addLoadEvent=function(_1){
var _2=window.onload;
if(typeof window.onload!="function"){
window.onload=_1;
}else{
window.onload=function(){
_2();
_1();
};
}
};
UTIL.prototype.getURLParameter=function(_3){
name=name.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");
var _4="[\\?&]"+name+"=([^&#]*)";
var _5=new RegExp(_4);
var _6=_5.exec(window.location.href);
if(_6==null){
return "";
}else{
return _6[1];
}
};
UTIL.prototype.isAjaxEnabled=function(){
var _7=null,b=navigator.userAgent;
isAjaxEnabled=false;
if(window.XMLHttpRequest){
_7=new XMLHttpRequest();
}else{
if(!/MSIE 4/i.test(b)){
if(/MSIE 5/i.test(b)){
_7=new ActiveXObject("Microsoft.XMLHTTP");
}else{
_7=new ActiveXObject("Msxml2.XMLHTTP");
}
}
}
if(null!=_7){
isAjaxEnabled=true;
}else{
isAjaxEnabled=false;
}
return isAjaxEnabled;
};


