zrobie zrobie, juz zrobilem

function F_opcja(lp)
{
if (lp==1)
{
document.getElementById("skrypt").setAttribute("disabled","disabled");
document.getElementById("www").setAttribute("disabled","disabled");
document.getElementById("file").removeAttribute("disabled");
}
if (lp==2)
{
document.getElementById("file").setAttribute("disabled","disabled");
document.getElementById("skrypt").setAttribute("disabled","disabled");
document.getElementById("www").removeAttribute("disabled");
}
if (lp==3)
{
document.getElementById("file").setAttribute("disabled","disabled");
document.getElementById("www").setAttribute("disabled","disabled");
document.getElementById("skrypt").removeAttribute("disabled");
}
}
wywolanie:
<input name="radio" type="radio" value="1" onclick="F_opcja(1);">
pozdrawiam