﻿//
// http://code.google.com/apis/maps/documentation/
//
// Maps Api, Ajax Search Api and Stylesheet
// The Key Embedded in the following script tags is designed to work with the following site:
//   http://www.linemaster.com
//

/* Map Search Control and Stylesheet */
window._uds_msw_donotrepair = true;

function LoadMapSearchControl() {

    var options = {
        zoomControl: GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
        title: "Linemaster Switch Corporation",
        url: "http://www.linemaster.com",
        idleMapZoom: GSmapSearchControl.ACTIVE_MAP_ZOOM,
        activeMapZoom: GSmapSearchControl.ACTIVE_MAP_ZOOM,
        onBootComplete: function() { // The following activates the Directions Info Window
            this.onCenterClick();
            this.onIdleCenterClick();
        } 
    }

    new GSmapSearchControl(
            document.getElementById("mapsearch"),
            "29 Plaine Hill Road, Woodstock, CT",
            options
            );
}

/* Arrange for this function to be called during body.onload event processing */
GSearch.setOnLoadCallback(LoadMapSearchControl);
