// Google Map Loader v1.0
// By Matthew Harris, www.runtings.com
//
// Change Log
//  v1.0 - 14/05/2008 - Initial Release
//
///////////////////////////////////////////////////////////////////////////////////////////
// CONFIG
///////////////////////////////////////////////////////////////////////////////////////////
// xml file to download placemarkers from
// note: this can be an absolute url or a fqdn (external site)
var kmlDocumentUrl = "/site/googlemap/googlemap.xml";

// show directions form in infoWindow?
// note: this will have to be disabled within ASP.NET sites
// valid settings - true / false
var cfgIncludeDrivingDirections = true;		

// which window to open when the driving directions form is used
// valid settings - _blank, _self, any frame name
var cfgDirectionsFormTarget = "_blank"; 

// id of the div to populate with clickable placemarker names
// note: set blank to disable feature
// valid settings - "" or "nameOfDivId"
var cfgSideBarElement = "";	
// end ////////////////////////////////////////////////////////////////////////////////////

