//http://www.shawnolson.net
//Programmed by Shawn Olson

	function checkUncheckAllType(theElement) {
     var theForm = theElement.form, z = 0;
	 for(z=0; z<theForm.length;z++){
      if(theForm[z].name == 'f_type[]'){
	  theForm[z].checked = theElement.checked;
	  }
     }
    }
  
  function checkUncheckAllTld(theElement) {
     var theForm = theElement.form, z = 0;
	 for(z=0; z<theForm.length;z++){
      if(theForm[z].name == 'f_tld[]'){
	  theForm[z].checked = theElement.checked;
	  }
     }
    }
    
    /*function checkUncheckAll(theElement) {
     var theForm = theElement.form, z = 0;
	 for(z=0; z<theForm.length;z++){
      if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){
	  theForm[z].checked = theElement.checked;
	  }
     }
    }*/