

function toggleDiv(obj1, obj2)
{

	if (obj1.style.display=='none')
	{
		obj1.style.display='';
		obj2.style.display='none';
	}
	else
	{
		obj1.style.display='none';
		obj2.style.display='';
	}
}
