resizeIframe = function(iframe){	

	if(document.all){
		var doc = iframe.contentWindow.document
	} else {
		var doc = iframe.contentDocument;
	}
	
	var height = doc.body.scrollHeight;
	
	iframe.style.height = height + 'px';
}

