﻿function init() {
 if (document.getElementById && document.body.style) {
  // Set up style switcher functionality
  initStyleSwitcher();
 }
 if (document.getElementsByTagName) {
  // Set up external links
  initExternalLinks();
 }
 if (document.getElementById) {
  if (document.getElementById('bodyFullWidth')) {
   initClosePopup();
  }
 }
}
window.onload = init;