// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// Wyskakujące okno do drukowania
var popupParams = 'width=800, height=600, resizable=yes, locations=no, status=no, scrollbars=yes, toolbar=no, directories=no, menubar=no, fullscreen=no';

document.observe('dom:loaded', function() {
  if ($('print_button')) {
    $('print_button').observe('click', function(event) {
      window.open(event.findElement("a").href, '', popupParams);
      event.stop();
    });
  }
  
  if ($('to-buy-list-submit')) {
    $('to-buy-list-submit').observe('click', function(event) {
      var form = event.element().up("form");
      window.open(form.action + '?' + form.serialize(), '', popupParams);
      event.stop();
    });
  };
});
