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

  //change the height of the iframe
  document.getElementById('PageIframe').height=the_height;
}
//-->
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

