Jednoducho povedané setAttribute pre style v IE nefunguje (viac napr. na http://www.quirksmode.org/bugreports/archives/2005/ 03/setAttribute_does_not_work_in_IE_when_used_with_ th.html).
Ešte jedno rýpnutíe k funkcii zobraz: Ak bude možností viac, bude sa stále meniť kód?
function zobraz (zob_id)
{
for (var i = 1; i < 3; ++i)
document.getElementById ("id" + i).style.display = (zob_id == i? "": "none");
}
A potom neposielať funkcii zobraz v argumente reťazec, ale číslo:
<input type="radio" name="typ" value="1" onclick="zobraz(1)">