function amzn_resize_frame(amznframeid) {

	resizeto = document.getElementById(amznframeid).contentWindow.document.body.scrollHeight+50;

	if (resizeto < 100) {
		resizeto = 1000;
	}

	resizeto = resizeto + 'px';
	document.getElementById(amznframeid).height = resizeto;
}

