/*
 * APPLICATION SPECIFIC JAVASCRIPT
 */


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

function wopen(url,popupname,attributes)
{ 
  win = window.open(url,popupname,attributes); 
  win.focus(); 
} 

