function adjustServiceBox()
{
  // Get natural heights
  var lHeight = xHeight("leftcontent");

  // Assign maximum height to all columns
  xHeight("centerproduct", lHeight);
  
  xTop('servicebox', lHeight - 16);
  
  xShow("servicebox");
  return;
}
window.onload = function()
{
  xAddEventListener(window, "resize",
    adjustServiceBox, false);
  adjustServiceBox();
  return;
}
