// RESIZE IFRAME CONTAINER :-)
//document.write("The Height is:" + document.body.clientHeight + " or " + document.body.scrollHeight + "<br>ATTEMPT TO RESIZE USING METHOD 2...");
function res_ze()
{
	window.resizeTo(560,document.body.scrollHeight+75);
	var desired = document.body.scrollHeight+70; 
	
	//window.outerHeight = document.body.scrollHeight+75;
	
	if(desired>document.body.clientHeight)
	{
		window.resizeTo(560,document.body.scrollHeight+75);
		//window.outerHeight = document.body.scrollHeight+75;
	}
}

setTimeout("res_ze()",500);
//window.resizeTo(window.parent.getElementById("a").width+10,document.body.scrollHeight+65);
//window.resizeBy(0,(document.body.scrollHeight - document.body.scrollHeight));
