function showSection(thisSection,thisThumbDiv)
{
  // set all borders to white
  document.getElementById("section1").style.border = "4px solid #EBE8F3";
  document.getElementById("section2").style.border = "4px solid #EBE8F3";
  document.getElementById("section3").style.border = "4px solid #EBE8F3";
  // set the correct pic to have border
  document.getElementById(thisSection).style.border = "4px solid #C7BFDC";
  // update which section we are in
  villaGuideSection=thisSection;
  // hide all divs
  document.getElementById("divLuxury").style.display = "none";
  document.getElementById("divPrivate").style.display = "none";
  document.getElementById("divShared").style.display = "none";
  // show correct div
  document.getElementById(thisThumbDiv).style.display = "block";
}
function mouseOutVillaThumb(myImage)
{ if (villaGuideSection != myImage) { document.getElementById(myImage).style.border = "4px solid #EBE8F3"; } }

function showCommunity(mapID)
{
  //centre on screen
  getWindowWidth();
  var winLeft = (x / 2) - 250;
  var winTop = (y / 2) - 125;
  //comPopup = (window.open('popups/communities.php?mapID='+mapID,'comPopup','width=600,height=228,resizable=false,scrollbars=false,status=false,titlebar=false,toolbar=false,left='+winLeft+',top='+winTop) || window).focus();
  comPopup = window.open('popups/communities.php?mapID='+mapID,'comPopup','width=500,height=250,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,left='+winLeft+',top='+winTop);
  if (window.focus) { comPopup.focus(); }
}
function hideCommunity(divID)
{
  document.getElementById(divID).style.display = "none";
}
