function showHelp() {
	var helpId
	var sections
	var query = String(document.location.search)

	if (query.indexOf('id=') != -1) {
		helpId = query.slice(query.indexOf('id=') + 3)

		if ($(helpId)) {
			sections = $$("center")
			for (i = 0; i < sections.length; i++) {
				if (sections[i] != $(helpId)) {
					sections[i].remove();
				}
			}

			$(helpId).getChildren()[0].addClass('framedHelpContainer');
		}
	}

	else {
		injectTitle()
	}
}

function injectTitle() {
	var firstSection = $$("center")[0]
	var logo = new Element('center');
	var logoContents = '<div class="searchLogo"><a href="http://www.vidista.com" target="_top"><img src="../img/logobig_tm.gif" border="0" /></a><div class="searchLogoCaption">'+document.title+'</div></div>'

	logo.setHTML(logoContents)

	logo.injectBefore(firstSection);
}