function show_help(var_id)
{
	document.getElementById(var_id).style.display = "block";
}

function hide_help(var_id)
{
	document.getElementById(var_id).style.display = "none";
}
