
function includeJavaScript(filename) {
  var script = document.createElement("script");
  script.src = filename;
  script.type = "text/javascript";
  var head = document.getElementsByTagName("head").item(0);
  head.appendChild(script);
}

function framebuster() {
  // If the page has been loaded in a frame, get out of it.
  //  This is an anti-clickjacking measure.
  $(document).ready(function() {
    if (self == top) {
      $("#body").css({'visibility':'visible'});
    } else {
      document.documentElement.style.display = "none";
      top.location = self.location;
    }
  });
}

// == Load third-party libraries ==
google.load("jquery","1");
google.load("jqueryui","1");

