
// I F R A M E   A U T O   R E S I Z E   H E I G H T

function calcHeight()
{
	try
	{
		var id = top.document.getElementById('listframe');
		// position to the top
		id.contentWindow.scroll(0,0);
		//find the height of the internal page
		var the_height= id.contentWindow.document.body.scrollHeight;
		//change the height of the iframe
		id.height=the_height;
	}
	catch(N)	{}
	try
	{
	  var id = top.document.getElementById('optionsframe');
		// position to the top
		id.contentWindow.scroll(0,0);
		//find the height of the internal page
		var the_height= id.contentWindow.document.body.scrollHeight;
		//change the height of the iframe
		id.height=the_height;
	}
	catch(N) {}
}


