// JavaScript Document

if (window.innerHeight){
   //navegadores basados en mozilla
   espacio_iframe = window.innerHeight - 110
}else{
   if (document.body.clientHeight){
      //Navegadores basados en IExplorer, es que no tengo innerheight
       espacio_iframe = document.body.clientHeight - 110
   }else{
       //otros navegadores
       espacio_iframe = 590
   }
} 
document.write ('<iframe name="iprincipal" frameborder="0" src="iquienes.html" width="100%" height="' + espacio_iframe + '" scrolling="auto" frameborder="0" allowtransparency="1" transparency>')
document.write ('</iframe>') 



