Thanks ShaneH0 and Dilettante,
I created and named each item dynamically, since I use the name and id's for different actions on a specific record. When these goto some of my other functions, I use this information to locate other field or function specific records or account information without having to go back to the database.
As for the location of the HTML field specific info, I found a quicker method of getting the data and thought I would share. I added another column to my HTML table and am pulling the values from that cell as opposed to the name field of the checkbox. All I have to do now is figure out how to hide that column from appearing on the screen, which I guess, I'll just change the text color to that of the background.
Although it is Jscript, the following is a subFunction to my VBscript which returns the cell value to a hidden text field on my page. I then use that value in my VBscript.
<SCRIPT LANGUAGE="JScript">
function GetCell(myROW, myCOL) {
document.all.HIDDENFIELD.value = document.all.TABLENAME.rows(myROW).cells(myCOL).innerText;
}
</SCRIPT>
Thanks again for the help.
Rock6431