function resize_frame(amznframeid) {

	resizeto = document.getElementById(amznframeid).contentWindow.document.body.scrollHeight+35;

	if (resizeto < 100) {
		resizeto = 1500;
	} 

	resizeto = resizeto + 'px';
	document.getElementById(amznframeid).height = resizeto;
}

