/* Navigation flood fill
  by Ryan O'Dell - 20th March 2006 */

function floodNavigation()
{
   /* only supports Internet Explorer at present, due to the way in which this formulae works */
   /* added check for disabled flood fill = iFloodAdjust = 0 */
   if (document.all && iFloodAdjust!=0) {
      document.all.rightCol.style.height = document.all.box.offsetHeight - document.all.footer.offsetHeight - iFloodAdjust + 'px';
   }
}
/* end of flood fill */