﻿// JavaScript Document

function toIframe(url, iframe) { // Para lanzar pagina en iFrame
	window.open(url, iframe, '');
}
function iFrameHeight() {
 // if contentDocument exists, W3C compliant (Mozilla) 
 if (document.getElementById("iframeCnt").contentDocument){ 
   rv = document.getElementById("iframeCnt").contentDocument; 
 } else { 
   // IE 
   rv = document.frames["iframeCnt"].document; 
 }   
 var h = rv.getElementById("content").scrollHeight;
//  alert("tamaño del body " + h);
  document.getElementById("iframeCnt").height = h;
}
function onPageShow() {
   rv = document.getElementById("iframeCnt").contentDocument; 
   var h = rv.getElementById("content").scrollHeight;
//  alert("tamaño del body " + h);
  document.getElementById("iframeCnt").height = h;
}
