function divswitchto(x,state)
	{
	if (document.all)
		{ //IS IE 4 or 5 (or 6 beta)
		eval('document.all.' + x + '.style.display = state');
		}
	if (document.layers)
		{ //IS NETSCAPE 4 or below
		document.layers[x].display = state;
		}
	if (document.getElementById &&!document.all)
		{
		hza = document.getElementById(x);
		hza.style.display = state;
		}
	}

function divactivate(x)
	{
	divswitchto('ogreniyorum','none');
	divswitchto('ilmihal','none');
	divswitchto('onlar_ve_namaz','none');
	divswitchto('makaleler','none');
	divswitchto(x,'block');
	setCookie('dttoptab',x);
	}