	
function resizeFrame(h, noScroll){	
	if(!noScroll) scroll(0,0);
	var iFrame = document.getElementById('main_iframe_ap');
	if(!iFrame) return false;
	iFrame.style.height = parseInt(h+20)+'px';
	iFrame.height = h+20;
	return true;
}

