function show_block(div, desc)
{
	div = document.getElementById(div);
	div.style.display = 'block';
	div.style.position = 'absolute';
	div.style.backgroundColor = 'lightyellow';
	div.style.border = 'solid 1px black';
	div.style.padding = '10px';
	div.style.paddingRight = '10px';
	div.style.marginTop = '4px';
	div.style.marginLeft = '10px';
	div.style.fontSize = '11px';
	div.style.textAlign = 'left';
	div.style.lineHeight = '13px';
	div.innerHTML = '<div><img src="' + desc + '" /></div>';
}

function hide_block(div)
{
	div = document.getElementById(div);
	div.style.display = 'none';
}
