function pokaz(co) {

cos = 'k1';
if(cos!=co){
to = document.getElementById(cos);
	if (to.style.display != 'none') 
	to.style.display = 'none';
}
cos = 'k2';
if(cos!=co){
to = document.getElementById(cos);
	if (to.style.display != 'none') 
	to.style.display = 'none';
}
cos = 'k3';
if(cos!=co){
to = document.getElementById(cos);
	if (to.style.display != 'none') 
	to.style.display = 'none';
}
cos = 'k4';
if(cos!=co){
to = document.getElementById(cos);
	if (to.style.display != 'none') 
	to.style.display = 'none';
}

to = document.getElementById(co);

	if (to.style.display != 'block') 
	to.style.display = 'block';
	else
	to.style.display = 'none';

return false;
}


