function show1(obj)
{
	if (obj.style.display!="") obj.style.display=""; else obj.style.display="none";
}

function show(obj)
{
	obj.style.display=""; 
}

function hide(obj)
{
	obj.style.display="none";
}



