<!--
		
		function printer_friendly(){
		 
		document.getElementById('Table7').bgColor = "white";
		document.getElementById('Table7').background = "";
		document.getElementById('body1').background = "";
 
		}

    function CheckAllDataGridCheckBoxes(aspCheckBoxID, checkVal) {

      //  re = new RegExp(':' + aspCheckBoxID + '$')  //generated controlname starts with a colon
          re = new RegExp(  aspCheckBoxID  )
  
        for(i = 0; i < document.forms[0].elements.length; i++) {

            elm = document.forms[0].elements[i]
//alert(elm.type);
            if (elm.type == 'checkbox') {
//alert(elm.name);
                if (re.test(elm.name)) {

                    elm.checked = checkVal

                }
            }
        }
    }


//-->
