<html>

  <head>
        <style type="text/css">
                ul, li { padding-left: 0px; margin-left: 0px; }
        </style>

            <title>GBHGIS with OpenLayers</title> 
            <script src="OpenLayers/OpenLayers.js"></script>
           <script src="OpenLayers/EmbeddedMap.js"></script>

            <script type="text/javascript">

        // Delcare embeddedMap variable
        var embeddedMap;

            function init()
            {
                // Create the embedded map object
                embeddedMap = new EmbeddedMap(document.getElementById("map1"), 512.0, 512.0, "europe", 4050000.0, 3050000.0, 0);
        }

            </script>
  </head>

  <body onload="init()">
          <div style="float:right;width:40%">
                <h1 style="font-size:1.3em;">Map Information</h1>
                    <div id="mapInfo"></div>
                <a id="link" href="" target="_blank"></a>
                <div id="original"></div>
                    <div id="legend"></div>
          </div>

          <div id="map1" style="width:512px; height:512px"></div>
        <br>

  </body>

</html>