function load() {if (GBrowserIsCompatible()) {if (document.getElementById("mapLS") != null) {   document.getElementById("mapLS").style.visibility = "visible";  var mapLS = new GMap2(document.getElementById("mapLS")); mapLS.setCenter(new GLatLng(47.357812, -122.106916), 17);mapLS.openInfoWindowHtml(mapLS.getCenter(), "<br />Lucky Star Chinese Restaurant.<br />Location in Covington.");mapLS.addControl(new GLargeMapControl());mapLS.addControl(new GMapTypeControl());mapLS.setMapType(G_HYBRID_MAP);}if (document.getElementById("mapHN") != null) {   document.getElementById("mapHN").style.visibility = "visible";var mapHN = new GMap2(document.getElementById("mapHN"));mapHN.setCenter(new GLatLng(47.360032, -122.166782), 16);mapHN.openInfoWindowHtml(mapHN.getCenter(), "<br />Lucky Star Chinese Restaurant.<br />Location in Kent.");mapHN.addControl(new GLargeMapControl());mapHN.addControl(new GMapTypeControl());mapHN.setMapType(G_HYBRID_MAP);}} } function ClosePane() {  var pane = document.getElementById("ddPane");   pane.style.position = "absolute";  pane.style.display = "none";  pane.style.zIndex = 999;  document.getElementById("innerMap").innerHTML = "";  document.getElementById("innerPane").innerHTML = "";  document.getElementById("footer").style.display = "block";  document.getElementById("mapLS").style.display = "block";  document.getElementById("mapHN").style.display = "block"; } function ShowPane() {   var pane = document.getElementById("ddPane");   pane.style.display = "block";   pane.style.backgroundColor = "White";  pane.style.zIndex = 999;  document.getElementById("mapLS").style.display = "none";  document.getElementById("mapHN").style.display = "none";  document.getElementById("footer").style.display = "none"; }