com.csatp.getTooltip=function(objectID){AjaxTooltip.getTip(objectID);
var element=document.getElementById("overDiv");
if(element){overlib(element.innerHtml)
}};
com.csatp.getTooltipHack=function(objectID,newOffsetY){AjaxTooltip.getTip(objectID);
var element=document.getElementById("overDiv");
if(element){overlib(element.innerHtml,OFFSETY,newOffsetY)
}};
com.csatp.getTooltipOffsetXHack=function(objectID,newWidth){AjaxTooltip.getTip(objectID);
var element=document.getElementById("overDiv");
if(element){overlib(element.innerHtml,OFFSETX,newWidth)
}};
com.csatp.toggleFormElements=function(disable){var el=document.forms[0].elements;
for(var i=0;
i<el.length;
i++){el[i].setAttribute("disabled",disable)
}};
com.csatp.disableEnableLinks=function(xHow){var objLinks=document.links;
for(var i=0;
i<objLinks.length;
i++){objLinks[i].disabled=xHow;
if(objLinks[i].onclick&&xHow){objLinks[i].onclick=new Function("return false;"+objLinks[i].onclick.toString().getFuncBody())
}else{if(xHow){objLinks[i].onclick=function(){return false
}
}else{if(!xHow&&objLinks[i].onclick.toString().indexOf("function(){return false;}")!=-1){objLinks[i].onclick=null
}else{if(!xHow&&objLinks[i].onclick.toString().indexOf("return false;")!=-1){strClick=objLinks[i].onclick.toString().getFuncBody().replace("return false;","");
objLinks[i].onclick=new Function(strClick)
}}}}}};
String.prototype.getFuncBody=function(){var str=this.toString();
str=str.replace(/[^{]+{/,"");
str=str.substring(0,str.length-1);
str=str.replace(/\n/gi,"");
if(!str.match(/\(.*\)/gi)){str+=")"
}return str
};