		function resizeIframe() {
			
				i = parent.document.getElementById(window.name)
			
				var test1 = document.body.scrollHeight;
				var test2 = document.body.offsetHeight;
			
				if (test1 > test2){
					iHeight = document.body.scrollHeight;
				}
				else{
					iHeight = document.body.offsetHeight;
				}
				
				i.style.height = iHeight + 10 + "px"

				parent.scrollTo(0,0);
			}


		function resizeIframe2() {
			
				i = parent.document.getElementById(window.name)
			
				var test1 = document.body.scrollHeight;
				var test2 = document.body.offsetHeight;
			
				if (test1 < test2){
					iHeight = document.body.scrollHeight;
				}
				else{
					iHeight = document.body.offsetHeight;
				}
				
				i.style.height = iHeight + 10 + "px"

				parent.scrollTo(0,0);
			}
