1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3  <head>
4    <title>Ahref map menu</title>
5<style type="text/css">
6#tree{
7border-right:none;
8border-top: none;
9border-bottom: none;
10border-left:none;
11position: absolute;
12top:0;
13left:0;
14}
15#content{
16position:absolute;
17top:0;
18left: 0;
19font-family: sans-serif;
20color: navy;
21}
22</style>
23<script type="text/javascript">
24function setSizeExpand(){
25  var availableHeight = 0;
26  var availableWidth = 0;
27
28  if(document.all)
29  {
30      availableHeight = document.body.clientHeight;
31      availableWidth = document.body.clientWidth;
32  }
33  else
34  {
35      availableHeight = innerHeight;
36      availableWidth = innerWidth;
37  }
38
39  var tree = document.getElementById('tree').style;
40  tree.height = availableHeight;
41  tree.width = availableWidth;
42
43}
44</script>
45  </head>
46
47  <body onload="setSizeExpand()">
48    <iframe id="tree" src="local_map.xml"></iframe>
49  </body>
50</html>
51
52