function YNdisplay(id)
{
	if (_G(id).style.display == "none")
	{
		_G(id).style.display = "";
	}
	else
	{
		_G(id).style.display = "none";
	}
}

