function read()
{
var numbers = new Array();
for (i = 0; i < field.length; i++)
numbers[i] = document.test.checkboxName.value;
var counter=0;
//Let's print out the elements of the array.
for (counter=0; counter<numbers.length; counter++)
document.write(numbers[counter] + "<br>");
}
I want to read the values of the checkboxs and store the vlaues into an array (there are more than 1 checkboxs) the form name is text and the names of the check box = checkboxname
any help would be appreciated as i dont know where i am going wrong