####
function clicksel( itm )
{
if (itm.checked)
{
if ((document._LocationSelection.sel.value != itm.name ) && ( document._LocationSelection.sel.value != ""))
{
box = eval("document._LocationSelection." + document._LocationSelection.sel.value);
box.checked = false;
}
else
{
document._LocationSelection.sel.value = itm.name;
}
}
else if (document._LocationSelection.sel.value == itm.name)
{
document._LocationSelection.sel.value = "";
}
}
####
my $input = $agent->current_form->find_input("selrow0", 'checkbox', 0);
$input->value("selrow0");
####
Illegal value 'selrow0' for field 'selrow0' at ./check_avail.lib line 285