var mapcontrol;

function AddMyControl()
{
	if (mapcontrol == null)
	{
		mapcontrol = document.createElement("div");
		mapcontrol.id = "myControl";
		mapcontrol.style.position = "absolute";
		mapcontrol.style.top ="0px";
		mapcontrol.style.left = "0px";
		mapcontrol.style.height = "28px";
		mapcontrol.style.width = "70px";
		mapcontrol.style.zIndex = 10;
		//mapcontrol.style.border = "1px solid black";
		mapcontrol.style.background = "transparent";
		mapcontrol.innerHTML = '<table cellspacing=0 cellpadding=0><tr valign=top>'
			+ '<td><input id="zoomin" type="image" src="../images/map/ZoomIn.gif" onclick="map.ZoomIn(); return false;" ondblclick="map.ZoomIn(); return false;" onMouseOver="this.src=\'../images/map/ZoomIn2.gif\';" onMouseOut="this.src=\'../images/map/ZoomIn.gif\';"/></td>'
			+ '<td><input id="zoomout" type="image" src="../images/map/ZoomOut.gif" onclick="map.ZoomOut(); return false;" ondblclick="map.ZoomOut(); return false;" onMouseOver="this.src=\'../images/map/ZoomOut2.gif\';" onMouseOut="this.src=\'../images/map/ZoomOut.gif\';"/><img src="../images/map/Seperator.gif"></td>'
			+ '<td><input id="reset" type="image" src="../images/map/Reset.gif" onclick="resetMap(); return false;" onMouseOver="this.src=\'../images/map/Reset2.gif\';" onMouseOut="this.src=\'../images/map/Reset.gif\';"/></td>'
			+ '</tr></table>';
		document.getElementById('myMap').appendChild(mapcontrol);
	}

}

var mapcontrol2;

function AddMyControl2()
{
	if (mapcontrol2 == null)
	{
		mapcontrol2 = document.createElement("div");
		mapcontrol2.id = "myControl";
		mapcontrol2.style.position = "absolute";
		mapcontrol2.style.top ="0px";
		mapcontrol2.style.left = "0px";
		mapcontrol2.style.height = "28px";
		mapcontrol2.style.width = "70px";
		mapcontrol2.style.zIndex = 10;
		//mapcontrol.style.border = "1px solid black";
		mapcontrol2.style.background = "transparent";
		mapcontrol2.innerHTML = '<table cellspacing=0 cellpadding=0><tr valign=top>'
			+ '<td><input id="zoomin" type="image" src="../images/map/ZoomIn.gif" onclick="map2.ZoomIn(); return false;" ondblclick="map2.ZoomIn(); return false;" onMouseOver="this.src=\'../images/map/ZoomIn2.gif\';" onMouseOut="this.src=\'../images/map/ZoomIn.gif\';"/></td>'
			+ '<td><input id="zoomout" type="image" src="../images/map/ZoomOut.gif" onclick="map2.ZoomOut(); return false;" ondblclick="map2.ZoomOut(); return false;" onMouseOver="this.src=\'../images/map/ZoomOut2.gif\';" onMouseOut="this.src=\'../images/map/ZoomOut.gif\';"/><img src="../images/map/Seperator.gif"></td>'
			+ '<td><input id="reset" type="image" src="../images/map/Reset.gif" onclick="resetMap2(); return false;" onMouseOver="this.src=\'../images/map/Reset2.gif\';" onMouseOut="this.src=\'../images/map/Reset.gif\';"/></td>'
			+ '</tr></table>';
		document.getElementById('myMap4').appendChild(mapcontrol2);
	}

}