function font_size(fs)
{
  //var article=document.getElementById("article_content").style;
  var article=document.getElementById("article").style;
  article.fontSize=fs+"pt";
  //alert(document.getElementById("article_content").offsetWidth);
}

function load()
{
  width=brSize();
  if(width < 1130)
  {
    //User has a small screen so adjust the layout
    layoutAdjust();
  }
}

function layoutAdjust()
{
  // this function will move the right hand side bar and adjust other dimensions
  /*
  var header = document.getElementById("header").style;
  header.backgroundImage = "url(http://www.accelonix.co.uk/new/templates/accelonix/images/head_sm.jpg)";
  header.height = "104px";
  ssheets = document.styleSheets;
  for(i=0;i<ssheets.length;i++)
  {
    if(ssheets[i].title=="Normal")
    {
      ssheets[i].disabled=true;
    }
  }
  */
}
/*
if (window.addEventListener)
window.addEventListener("load", load, false)
else if (window.attachEvent)
window.attachEvent("onload", load)
*/
