//ajusta la altura de un iframe a su contenido
	function AutoFitIframe(iFrameObj) {
		try {
			iFrameObj.height = iFrameObj.contentWindow.document.body.scrollHeight;
		}
		catch(e)
		{

			iFrameObj.height = 800;

			if (isIntranet()) {
				alert('exception AutoFitIframe:' + e.message);
			}
		}
	}





