function show_hint(id)
{
    document.getElementById(id).style.display = 'block';	
}

function close_hint(id)
{
    document.getElementById(id).style.display = 'none';	
}
