function showBullet (id)
{
	//document.getElementById(id).style.listStyle='square';
	document.getElementById(id).style.borderLeft = '4px #36f solid';
	return;
}

function hideBullet (id)
{
	//document.getElementById(id).style.listStyle='none';
	document.getElementById(id).style.borderLeft = '4px #999 solid';
	return;
}