function reSize1() {
	try{
		var objBody = ifrm1.document.body;
		var objFrame = document.all("ifrm1");
		ifrm1Height = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
			
		if (ifrm1Height > 100) {
				objFrame.style.height = ifrm1Height
		}else{
				objFrame.style.height = 500;
		}
		objFrame.style.width = '700'
		}catch(e){}
}
function init_iframe1() {
	reSize1();
	setTimeout('init_iframe1()',200)
}
init_iframe1();


function reSize2() {
	try{
		var objBody = ifrm2.document.body;
		var objFrame = document.all("ifrm2");
		ifrm2Height = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
			
		if (ifrm2Height > 100) {
				objFrame.style.height = ifrm2Height
		}else{
				objFrame.style.height = 500;
		}
		objFrame1.style.width = '200'
		}catch(e){}
}
function init_iframe2() {
	reSize2();
	setTimeout('init_iframe2()',200)
}
init_iframe2();
