var xsmall = false;

function universe_align () {
  var scrw = 0;
  var unidiv = document.getElementById('unidiv');
  var contdiv = document.getElementById('contdiv');
  if (window.innerWidth) {
    scrw = window.innerWidth;
  } else if (document.documentElement.clientWidth) {
    scrw = document.documentElement.clientWidth;
  }
  if ((scrw < 985) && (!xsmall)) {
    unidiv.style.width = "985px";
    contdiv.style.left = "0";
    contdiv.style.marginLeft = "5px";
    contdiv.style.marginRight = "5px";
    xsmall = true;
  }
  if ((scrw > 984) && (xsmall)) {
    unidiv.style.width = "100%";
    contdiv.style.left = "50%";
    contdiv.style.marginLeft = "-487px";
    contdiv.style.marginRight = "0";
    xsmall = false;
  }
}

function gohere (loc) {
  window.open(loc);
}
