function resizeMe(obj,defheight){
	docHeight = expansionifm.document.documentElement.scrollHeight
	if(docHeight < defheight) docHeight = defheight;
	obj.style.height = docHeight + 'px'
}

function resizeMe2(obj,defheight){
	docHeight = expansionifm2.document.documentElement.scrollHeight
	if(docHeight < defheight) docHeight = defheight;
	obj.style.height = docHeight + 'px'
}

window.onload = resizeMe2(this,100);
