// Common JavaScript functionality for Stan Tashman & Assoc employee website

// Set the browser title from the title text within the page

function setPageTitle(aDocument) {
	aDocument.title = 'Tashman - ' + aDocument.getElementById("PageTitle").innerHTML;
	return;
}

