// resizes Iframe according to content
function resizeMe(obj){ 
	var docHeight = ""
	if (document.all)
		docHeight = document.frames(obj.id).document.body.scrollHeight
	else
		docHeight = document.getElementById(obj.id).contentDocument.body.scrollHeight
	obj.style.height = docHeight + 'px'
}

