﻿// Setup package
HouseTrevethan = function() { }
HouseTrevethan.Debug = function() { }

// Displays the properties of an object in an alert window.
HouseTrevethan.Debug.EnumProps = function(obj)
{
	var props = "";
	var i;
	for (i in obj)
	{
		props += i + " = " + obj[i] + "</br >";
	}
	propWin = window.open('','Properties','resizable=yes,scrollbars=yes,height=200,width=500', false);
	propWin.document.write(props);

} // End Enum Props

