﻿function ShowObject(o)
{
	if (o.style.display == "none")
	{
		o.style.display = "block";
	}
	else
	{
		o.style.display = "none";
	}
}
