/*
 * APPLICATION SPECIFIC JAVASCRIPT
 */


function toggleCheckBoxBySelector(box, class_name )
{
  $$( class_name ).each(function(e){
    e.checked = box.checked;
  }); 
  
}

function openPDF()
{
  var path = $F("quarterly");
  if(path != 0)
  {
    window.open(path);
  }
}


