bb_width=210;
bb_height=600;

function writeIframe(){
var str='';
str+='<iframe id="iframe" name="iframe" onLoad="calcHeight();" border="0" frameborder="0" allowtransparency="true" scrolling="no" style="border: 0px" src="/portals/billboard/bbwidget.asp?lid='+qs("lid")+'&rid='+qs("rid")+'">An iframe capable browser is required to view this widget.<\/iframe>';
if (!isNaN(qs("rid"))) document.write(str);
}

function qs(ji) {
	hu = parent.location.search.substring(1);
	gy = hu.split("&");
	for (i=0;i<gy.length;i++) {
		ft = gy[i].split("=");
		if (ft[0] == ji) {
			return ft[1];
		}
	}
}

function calcHeight()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('iframe').contentWindow.
      document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('iframe').height=
      the_height;
}

writeIframe();