function showMap()
{
  var picWindow;
	var winTop = (screen.height / 2) -250;
	var winLeft = (screen.width / 2) -350;
	var windowFeatures = "width=656,height=656,resizable,scrollbars,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
		
	picWindow = window.open("map.htm","map",windowFeatures);
	picWindow.focus();
	return false;	
}

function showArea()
{
  var picWindow;
	var winTop = (screen.height / 2) -250;
	var winLeft = (screen.width / 2) -350;
	var windowFeatures = "width=760,height=460,resizable,scrollbars,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
		
	picWindow = window.open("area.htm","area",windowFeatures);
	picWindow.focus();
	return false;	
}

function showInt()
{
  var picWindow;
	var winTop = (screen.height / 2) -250;
	var winLeft = (screen.width / 2) -350;
	var windowFeatures = "width=658,height=475,resizable,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
		
	picWindow = window.open("Interior1.htm","interior",windowFeatures);
	picWindow.focus();
	return false;	
}

function showExt()
{
  var picWindow;
	var winTop = (screen.height / 2) -250;
	var winLeft = (screen.width / 2) -350;
	var windowFeatures = "width=658,height=500,resizable,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
		
	picWindow = window.open("Exterior1.htm","exterior",windowFeatures);
	picWindow.focus();
	return false;	
}

function showSA()
{
  var picWindow;
	var winTop = (screen.height / 2) -250;
	var winLeft = (screen.width / 2) -350;
	var windowFeatures = "width=658,height=475,resizable,";
	windowFeatures = windowFeatures + "left=" + winLeft + ",";
	windowFeatures = windowFeatures + "top=" + winTop;
		
	picWindow = window.open("SA.htm","SAbery",windowFeatures);
	picWindow.focus();
	return false;	
}