// Sets iFrame Height to fill page
function setHeight(iFrameID) {
   var iFrame = document.getElementById(iFrameID);
   var docHeight;
   
   if (typeof document.height != 'undefined') {
      docHeight = document.height;
   }
   else if (document.compatMode && document.compatMode != 'BackCompat') {
      docHeight = document.documentElement.scrollHeight;
   }
   else if (document.body && typeof document.body.scrollHeight !=
         'undefined') {
      docHeight = document.body.scrollHeight;
   }

      if (docHeight < 1025 ) {
      iFrame.style.height = 880;
      //alert("Height = " + docHeight);

   }
}


/*
id="xyz"

<SCRIPT LANGUAGE="JavaScript" SRC="Your Intimate Psychology Portal - 
www_psychology4all_com_files/tools.js">
</SCRIPT>

<script type="text/javascript">setHeight("xyz");</script>
</BODY>


---

td height="100%"
*/