function ShowNone()
{
	list.style.display="none";
}
function ShowAll()
{
	if(list.style.display == "inline")
		list.style.display="none";
	else
		list.style.display="inline";
}