// JavaScript Document

		var Monitor=new function()
			{
			this.idIFrame="content";
			this.nameIFrame="content";
			this.beginMonitor=function ()
				{
				var wobjIframe;
				try
					{
					wobjIframe=window.frames[this.nameIFrame];
					}
				catch(ee)
					{
					wobjIframe=window.document.frames[this.nameIFrame];
					}
				//window.status= (new Date()) + ":::" + (wobjIframe.document.body.scrollHeight );
				try
					{
					//javascript:window.alert(window.document.frames[0].document.body.scrollHeight)
					window.document.getElementById(this.idIFrame).style.height=(wobjIframe.document.body.offsetHeight + 50)+"px";
					}
				catch(ee)
					{
					//En este caso no hago nada ya que el iframe no está cargado
					}
				setTimeout("Monitor.beginMonitor()",50);
				}
			}
