function dropdown(mySel)
{
var myWin, myVal;
myVal = mySel.options[mySel.selectedIndex].value;
if(myVal)
   {
   if(mySel.form.target)myWin = parent[mySel.form.target];
   else myWin = window;
   if (! myWin) return true;
   myWin.location = myVal;
   }
return false;
}

function showFeaturesTab()
{
	document.getElementById("txtHint").innerHTML = document.getElementById("featuresContent").innerHTML
	document.getElementById("FeaturesTab").className = "selectedTab";
	document.getElementById("PhotosTab").className = "otherTab";
	document.getElementById("FloorTab").className = "otherTab";
	document.getElementById("MapTab").className = "otherTab";
	document.getElementById("VisitTab").className = "otherTab";
	document.getElementById("FurnishedTab").className = "otherTab";
}

function showMapTab()
{
	document.getElementById("txtHint").innerHTML = document.getElementById("mapContent").innerHTML
	document.getElementById("FeaturesTab").className = "otherTab";
	document.getElementById("PhotosTab").className = "otherTab";
	document.getElementById("FloorTab").className = "otherTab";
	document.getElementById("MapTab").className = "selectedTab";
	document.getElementById("VisitTab").className = "otherTab";
	document.getElementById("FurnishedTab").className = "otherTab";
	showSingleLocation()
}

