
function isXMLHttpReady(p_xmlHttp)
{
var bReturn=false;
try
{
if(null !=p_xmlHttp&&p_xmlHttp.readyState==4)
{
bReturn=true;
}
}
catch(e)
{
e.description="Exception in XMLUtilsJS - isXMLHttpReady(): "+e.description;
throw e;
}
return bReturn;
}
function URLEncodeQueryStringParm(p_sParm)
{
try
{
var sResult=new String(p_sParm);
sResult=encodeURIComponent(sResult);
return(sResult);
}
catch(e)
{
e.description="Exception in XMLUtils.js - URLEncodeQueryStringParm(): "+e.description;
}
}
function URLDecodeComponent(p_sParm)
{
var sResult=new String(p_sParm);
try
{
var sResult=new String(p_sParm);
sResult=decodeURIComponent(sResult);
}
catch(e)
{
sResult=unescape(sResult);
}
return sResult;
}

