function showHelp(what)
{
	$("#help").toggle();
	$("#help #help-content").load("/help/"+what+".html");
}

function closeHelp()
{
	$("#help").css('display','none');
}

function showInstr(what)
{
	$("#instr").toggle();
	$("#instr #instr-content").load("/help/instr/"+what+".html");
}

function closeInstr()
{
	$("#instr").css('display','none');
}
