jQuery(document).ready(function() {
  
  // set better defaults for the popup opened on calendar click
  jQuery('a[target=_blank]').bind('click', function(event) {
    event.preventDefault(); // so that only javascript handles the work
    window.open(jQuery(this).attr('href'), 'Finance5Calendar', 'menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=yes,status=no,height=800,width=1000');
  });
  
  jQuery('#calendar  form').bind('submit', function(event) {
    event.preventDefault(); // so that only javascript handles the work
    window.open(jQuery(this).attr('href'), 'Finance5Calendar', 'menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=yes,status=no,height=800,width=730');
  });
  
  
});