function Select(Select, checkBoxListID) {
    var checkBoxList = document.getElementById(checkBoxListID);
    var checkBoxes = checkBoxList.getElementsByTagName("input");

    for (var i = 0; i < checkBoxes.length; i++) {
        checkBoxes[i].checked = Select;
    }
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

