//	AddMap.js
//
//	Author: Ingrid Haas
//
//	Version Information 
//	1.0		2006.11.14		Base version
//
//	The above comment must stay intact for use. Not for resale.

function show_Map(LengthPosition,WidthPosition,Zoomlevel)
 {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());

        map.setCenter(new GLatLng(LengthPosition, WidthPosition), Zoomlevel);//ISRIC locatie
      }
    }
