File size: 520 Bytes
07c3cdd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<style>

</style>
<body onresize="autoResizeScreen()" onload="autoResizeScreen()">
<iframe name="frameMain" id="frameMain" src ="../users/usersInit" width="100%" height="200" frameborder="0" style >
  <p>Your browser does not support iframes.</p>
</iframe>
</body>
<script>
  function autoResizeScreen() {
    oCasesFrame    = document.getElementById('frameMain');
    oClientWinSize = getClientWindowSize();
    height = oClientWinSize.height-5;
    oCasesFrame.style.height = height;   
  }

 
</script>
</html>