blob: 31e4453456edc575ae0aa0b5a4b3db9f4320a196 [file] [log] [blame]
function fillselect()
{
p = document.getElementById("cvsproject");
proj = p[p.selectedIndex].value;
r = document.getElementById("release");
html = "";
for (var z in projs[proj])
{
s = projs[proj][z];
html += '<option value="' + s + '">' + s + '</option>\n';
}
r.innerHTML = html;
}