//CustomFX.js for FX version 1.3
//If the function returns "1" FX will continue on with functionality as normal.  If the function returns "0" FX will not execute the requested operation.

function rBoothClick(boothNum, exID, exName) 
{
  //Rented booth code here...
  return "1";
}
function rBoothAFavs(boothNum, exID, exName) 
{
  //Add rented booth to favorites code here...
  return "1";
}
function rBoothRFavs(boothNum, exID, exName) 
{
  //Remove rented booth to favorites code here...
  return "1";
}
function rBoothEmail(boothNum, exID, email, exName) 
{
  //Rented booth email code here...
  return "1";
}
function rBoothWeb(boothNum, exID, web, exName) 
{
  //Rented booth web code here...
  return "1";
}
function googleMapIt(boothNum, exID) 
{
  //Google Map Button click code here....
  return "1";
}
function printExInfo(boothNum, exID, exName) 
{
  //Print exhibitor information code here...
  return "1";
}
function aBoothClick(boothNum) 
{
  //Available booth code here...
  return "1";
}
function aBoothAFavs(boothNum) 
{
  //Add available booth to favorites code here...
  return "1";
}
function aBoothRFavs(boothNum) 
{
  //Remove available booth from favorites code here...
  return "1";
}
function aBoothEmail(boothNum, email) 
{
  //Available booth email code here...
  return "1";
}
function aBoothWeb(boothNum, web) 
{
  //Available booth web code here...
  return "1";
}
function mBoothClick(boothNum)
{
  //Multiple exhibitor booth click code here...
  return "1";
}
function emailFriend(boothNum, webLink) 
{
  //Email friend code here...
  return "1";
}
function sendFriendEmail(webLink)
{
  //Send email to friend code here...
  return "1";
}
function openFriendLink(webLink)
{
  //Open link in new window code here...
  return "1";
}
function toggleUnits(units)
{
  //Toggle units code here...
  return "1";
}
function zoomToFavs() 
{
  //Zoom to favorites code here...
  return "1";
}
function editFavs() 
{
  //Edit favorites code here...
  return "1";
}
function removeAllFavs() 
{
  //Remove all favorites code here...
  return "1";
}
function printCurrentList() 
{
  //Print current list code here...
  return "1";
}
function resetSearch() 
{
  //Reset search field code here...
  return "1";
}
function toggleBuilding() 
{
  //Toggle building ON/OFF code here...
  return "1";
}
function viewHelp() 
{
  //View help code here...
  return "1";
}
function printOptions() 
{
  //Print options code here...
  return "1";
}
function refreshHall() 
{
  //Refresh current hall code here...
  return "1";
}
function switchToStandard() 
{
  //Switch to standard view code here...
  return "1";
}
function switchToFull() 
{
  //Switch to full view code here...
  return "1";
}
function selectHall() 
{
  //Select different hall code here...
  return "1";
}
function printFavsList() 
{
  //Print favorites list code here...
  return "1";
}
function mapLoadFinish() 
{
  //Map load completed code here...
  return "1";
}
function closeAvailBox() 
{
  //Close available booth popup code here....
  return "1";
}
function closeRentBox() 
{
  //Close rented booth popup code here....
  return "1";
}
function closeMultiBox() 
{
  //Close multiple exhibitor booth popup code here....
  return "1";
}
function closeFavsBox() 
{
  //Close favorites list popup code here....
  return "1";
}
function closeHelpBox() 
{
  //Close help popup code here....
  return "1";
}
function closePrintBox() 
{
  //Close print options code here....
  return "1";
}
function closeLinkBox() 
{
  //Close email a friend link box code here....
  return "1";
}
function iAmHere(url) 
{
  //iAmHere Coordinates chosen code here....
  return "1";
}
function overlayClick(imgName) 
{
  //Overlay click code here....
  return "1";
}
function expired() 
{
  //Application expired code here....
  return "1";
}


