function Tog(obj)
{
	if(obj.style.visibility=='hidden') obj.style.visibility='visible'
	else obj.style.visibility='hidden'
}

