function helpInit(show){
	suppressErrors();
	initContext();
	var showItem = show;
	if (showItem){
		displayHelp(getHelpContent(showItem));
	}
}

function displayHelp(content, hideClose){
	var right = getElement("right");
		killChildren(right);
	var html = "<div id='secondaryRight'>";

	if(content != null){
		html += content;	
	}	
	if (!hideClose)  {
		html += closeHelp();
	}
	
	html += "</div>";
	
	right.innerHTML = html;
}

function closeHelp(){
	return "";
	//return '<br /><br /><a href="#" onclick="defaultRightSearch();">Close Help &gt;&gt;</span>';
}
