<!--
function reSize()
{
try{
	var objBody = content.document.body;
	var objFrame = document.getElementById("content");
	
	objFrame.style.height = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight)
	objFrame.style.width = objBody.scrollWidth + (objBody.offsetWidth - objBody.clientWidth)
	
	if (objFrame.style.height == "0px" || objFrame.style.width == "0px")
	{
	objFrame.style.width = "580px";
	objFrame.style.height = "800px"; 
	window.status = 'iframe resizing fail.';
	}
	else
	{
	window.status = '';
	}	
}

catch(e) {
	//window.status = 'Error: ' + e.number + '; ' + e.description;
}
}
//-->
