



var sParams  = "";
var sStatus  = "200";
var sReferer = document.referrer;
var sHost    = document.location.host;
var sURI     = document.location.protocol + "//" + document.location.host + document.location.pathname;
var sQuery   = document.location.search;


sReferer  = escape( sReferer || "" );
sHost     = escape( sHost || "" );
sURI      = escape( sURI || "" );
sQuery    = escape( sQuery || "" );

sParams   = sParams + "http_status=" + sStatus + "&";
sParams   = sParams + "referer=" + sReferer + "&";
sParams   = sParams + "host=" + sHost + "&";
sParams   = sParams + "uri=" + sURI + "&";
sParams   = sParams + "query=" + sQuery + "&";

var sSlash        = String.fromCharCode( 47 );
var sInterdictURL = "http://www.autonomy.com" + sSlash + "components" + sSlash + "Interceptor" + sSlash + "interdictor-logger.en.js" + "?" + sParams;
var interdictObj  = document.createElement( "script" );
interdictObj.src  = sInterdictURL;
interdictObj.setAttribute( "type", "text/javascript" );

document.body.appendChild( interdictObj );

