var _currentlyShowingId = null;

function showFloorPlans(which)
{
	showPopupMask();
	swapFloorPlans(which);
	showDetailsWindow("liveFloorPlanViews");
}
function swapFloorPlans(which)
{
	if (_currentlyShowingId != null)
	$(_currentlyShowingId).css({'display': 'none'});

	_currentlyShowingId = '#fp' + which;

	$(_currentlyShowingId).css({'display': 'block'});

	document.getElementById('popupFloorButton').src = 'content/images/live/res_' + which + '_btn.jpg';
}
function hideFloorPlans()
{
	hideDetailWindow("liveFloorPlanViews");
}
