ar=new Array();
function show_(DI)
{
	document.getElementById(DI).style.visibility="visible";
	ar[DI]=1;
}

function hide(DI)
{
	if (ar[DI]==0)
	{
document.getElementById(DI).style.visibility="hidden";
	}
}

function hide1(DI)
{
	ar[DI]=0;
	st=DI.toString();
	proc="hide('"+st+"')";
	setTimeout(proc,200);
}

function sl(DI)
{
ar[DI]=1;
}

function sla(DI)
{
hide1(DI);
}




