var invalid_titles = [
	'| J.J. Keller Associates, Inc. |',
	'J.J. Keller & Associates, Inc.',
	'J. J. Keller & Associates, Inc.',
	'Welcome to Keller',
	'Welcome to JJKeller',
	'Welcome to JJ Keller ',	// sic on the trailing space
	'Welcome to J.J. Keller',
	'Welcome to J. J. Keller & Associates, Inc.',
	'Welcome to JJKeller.com!',
	'Untitled Document'
];

function choose_page_name(url) {
	if (document.title && ! (document.title in invalid_titles)) {
		return trim(document.title);
	} else if (url == '/site_map/home.html') {
	        return "";
        } else {	
		return trim(url);
	}
}

function trim(s) {
	return s.substring(0, 100)
}
