// JavaScript Document
window.onload=function(){

Nifty("div#bar h1","top");
Nifty("div#content100","div#content66","div#content50","div#news50","div#news33","bottom same-height");
Nifty("div.content","bottom same-height");
}

function calcHeight()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('the_iframe').contentWindow.
      document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('the_iframe').height=
      the_height+25;
}

