function show_hint(id)

{
        for (var i = 1; i<=34; i++)
        {
            document.getElementById('hint'+i).style.display = 'none';
        }
	        document.getElementById(id).style.display = 'block';	
}

function close_hint(id)

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