/*
  Javascript to center the index page
*/

var center = {

page:function()
{
  var style = document.getElementById('bodydiv').style;

  style.left = Math.max(0.5 * (document.body.clientWidth  - 900),0);
  style.top  = Math.max(0.5 * (document.body.clientHeight - 780),0);
}
}
