Select and empty CHECKBOX JavaScript Function
Function SelectAll ()
{
For (i = 0; i
{
IF (Document.Forms [1] .Elements [i] .type! = "Checkbox") Continue;
Document.Forms [1] .Elements [i] .checked = true;
}
}
Function clearll ()
{
For (i = 0; i
{
IF (Document.Forms [1] .Elements [i] .type! = "Checkbox") Continue;
Document.Forms [1] .Elements [i] .checked = false;
}
}