function cookies()
	{
		if (navigator.cookieEnabled == 0) {
		window.location.href="errorCookie.html";}		 
	}
	
function calcHeight()
{
  //find the <STRONG class=highlight itxtvisited="1">height</STRONG> of the internal page
  var i=0;
  for(i;i<frames.length;i++)
  {
  var the_height=  document.getElementById('frame' +i ).contentWindow.document.body.scrollHeight;

  //change the <STRONG class=highlight itxtvisited="1">height</STRONG> of the <STRONG class=highlight itxtvisited="1">iframe</STRONG>
  document.getElementById('frame' + i).height=the_height + 25;
  }
}
