<!--
//redimencionamiento del iframe segun el contenido
     window.onload = function resize() {
   // window.parent.document.getElementById("iContenido").height = document.getElementById("ContenidoI").offsetHeight;
	//alert("document.getElementById("ContenidoI").offsetHeight");
	//alert(document.body.clientHeight);

if(document.getElementById&&!document.all){
		if(document.getElementById("ContenidoI").offsetHeight < 635){
			window.parent.document.getElementById("iContenido").height = 636;
		}
			else
		window.parent.document.getElementById("iContenido").height = document.getElementById("ContenidoI").offsetHeight+20;
		//alert(document.getElementById("ContenidoI").offsetHeight)
	}
	if(document.all){
		if(document.all("ContenidoI").offsetHeight < 635){
			//alert(document.all("ContenidoI").offsetHeight)
			window.parent.document.all["iContenido"].height = 636;
	}
		 else
		window.parent.document.all["iContenido"].height = document.all("ContenidoI").offsetHeight;
		//alert(document.all("ContenidoI").offsetHeight)
	}
	if(document.layers){
		if(window.parent.document.layers["ContenidoI"].offsetHeight < 635){
			window.parent.document.layers["iContenido"].height = 636;
	}
		 else
		window.parent.document.layers["iContenido"].height = window.parent.document.layers("ContenidoI").offsetHeight+20;
		//alert(document.layers("ContenidoI").offsetHeight)
	}
  }
  -->
