// Check the URL for a property, and load that property up in he'ah
function checkForProp()
{
	id_loc = parent.location.href.indexOf('=');
	if (id_loc > 0)
	{
		prop_id = parent.location.href.substring(id_loc + 1, parent.location.href.length);
		location.href = '/' + prop_id;
	}
}

checkForProp();