load (
  "contact.js",
  "cookie.js",
  "fixpng.js",
  "handler.js",
  "linkbar.js",
  "links.js",
  "nospam.js",
  "prototype.js",
  "query.js",
  "site.js",
  "social.js",
  "/cgi-bin/servertime.pl"
);

function load() {
  if (document.getElementsByTagName) {
    var scriptPath = document.getElementsByTagName("script")[0].src.match(/^.+\//);
    if (scriptPath) {
      for (var i = 0; i < arguments.length; i++) {
	if (arguments[i]) {
          arguments[i] = arguments[i].match(/^http(|s):\/\//) ? arguments[i] : arguments[i].match(/^\//) ? arguments[i] : scriptPath + arguments[i];
          if (document.createElementNS) {
            var scriptElement = document.createElementNS("http://www.w3.org/1999/xhtml", "script");
            scriptElement.src = arguments[i];
            scriptElement.type = "text/javascript";
            document.getElementsByTagName("head")[0].appendChild(scriptElement);
          }
          else {
            document.write("<script src=\"" + arguments[i] + "\" type=\"text/javascript\"><\/script>\n");
          }
        }
      }
    }
  }
  return scriptPath ? scriptPath : null;
}
