// JavaScript Document

function ShowRowhouse(rhtype)
{
	var rhtoshow = window.document.getElementById(rhtype);
	var rh_1 = window.document.getElementById("Rowhouse_large");
	var rh_2 = window.document.getElementById("Rowhouse_study");
	var rh_3 = window.document.getElementById("Rowhouse_small");
	
	//Hide all divs first
	
	if(rh_1.id != rhtype)
	{
		rh_1.style.display = "none";
	}
	if(rh_2.id != rhtype)
	{
		rh_2.style.display = "none";
	}
	if(rh_3.id != rhtype)
	{
		rh_3.style.display = "none";
	}
	
	//Show valid div
	
	if(rh_1.id == rhtype)
	{
		rh_1.style.display = "";
	}
	if(rh_2.id == rhtype)
	{
		rh_2.style.display = "";
	}
	if(rh_3.id == rhtype)
	{
		rh_3.style.display = "";
	}
}