 function mboxInfo() {   if(mboxServerURL) {     var mboxServerHost = mboxServerURL.substring(       mboxServerURL.indexOf("//"), mboxServerURL.indexOf('/boxserver'));     var baseURL = document.location.protocol + mboxServerHost +       '/admin/images/spacer.gif';     var info =       '?client=' + mboxClientCode +       '&script=1' +       '&cookies=' + escape(document.cookie) +       '&mboxIsSupported=' + mboxEnv.platform.isSupported() +       '&mboxIsEnabled=' + mboxEnv.isEnabled() +       '&mboxCount=' + mboxCount +       '&mboxPC=' + mboxPCId.getId() +       '&mboxSession=' + mboxSessionId.getId() +       '&mboxPage=' + mboxPageId +       '&mboxURL=' + escape(document.location) +       '&mboxReferrer=' + escape(document.referrer) +       '&unique=' + (new Date()).getTime();     document.write('<img src="' + baseURL + info + '" width="0"/>');   } } mboxInfo();
