function dictionary(term)  {
	// Globaly convert blank spaces in term name to URL spaces for browser compatibility
	term = term.replace(/ /g, '%20');
			
	// Get the site with the term parameter
	supportSite = "http://support.esri.com?fa=knowledgebase.gisDictionary.popup&popupTerm=" + term;

	// Pop up a window with the term and definition in it
	window.open(supportSite,'GISDictionary','location=no,  menubar=no, height=300, width=400, toolbar=no, status=no, resizable=no, scrollbars=yes');
	return;
	}