/*
wbs.js
Author: Tim Lemire
*/

function checksize() {

  if (document.body.clientWidth) {
    var size = document.body.clientWidth;
  }

  if (size < 750) {
    var ns = size / -2;
    var ns = ns + "px";
    document.getElementById('cenbox').style.marginLeft = ns;
  }
  else {
    document.getElementById('cenbox').style.marginLeft = "-375px";
  }
}

