<!-- 	
function checkAll(field)
{
  for (i = 0; i < field.length; i++) {
      if(field[i].type == 'checkbox') {
          field[i].checked = true ;
      }
  }
}

function uncheckAll(field)
{
  for (i = 0; i < field.length; i++) {
	  if(field[i].type == 'checkbox') {
      field[i].checked = false;
    }
  }
}
function popUp(width, height, url, name)  {
    var options = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0";
    window.open(url, name, options + ',width=' + width + ',height=' + height);
}
-->
