// ********************************************
// **        Flashmaps DB Mapper 1.1         **
// **      JavaScript Custom Functions       **
// ********************************************
// ** Feel free to make any changes you need **
// **      to fit your requirements.         **
// ********************************************
// **      (c)2006 Flashmaps Geospatial      **
// **        http://www.flashmaps.com        **
// ********************************************


// ********************************************
// **  Functions called from the map, events **
// ********************************************

// The visitor placed the mouse over a POI
function fmCustomPOIOnRollOver(fmPOIID) {}

// The visitor moved the mouse out of a POI
function fmCustomPOIOnRollOut(fmPOIID) {}

// The visitor clicked on a POI
function fmCustomPOIOnRelease(fmPOIID) {}

// The map is ready to receive commands
function fmCustomMapIsReady() {}

// A set of POIs has been loaded
function fmCustomPOIURLLoaded(strPOIsURL, iPOIsNumber) {}

// ********************************************
// **  Functions to send commands to the map **
// ********************************************

// Highlight a POI
function fmCustomPOIHighlight(fmPOIID, strMethod) {
	// Highlight a POI inside the map
	fmPOIHighlight(fmPOIID, strMethod);
}

// Unhighlight a POI
function fmCustomPOIUnhighlight(fmPOIID) {
	// Unhighlight a POI inside the map
	fmPOIUnhighlight(fmPOIID);
}

// Highlight and focus on a POI
function fmCustomPOIHighlightAndFocusOn(fmPOIID, strMapScale, strMethod){

	// Focus and highlight on a POI inside the map
	fmPOIHighlightAndFocusOn(fmPOIID, strMapScale, strMethod);
}