function dispHandle(obj) 
{
if (obj.style.display == "none")
{
	obj.style.display = "";
}
else
{
	obj.style.display = "none";
}
	
}

