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

Event.addBehavior({
  'a.popup:click' : function () {
    window.open(this.href+'?layout=popup', '_blank','scrollbars=yes,width=450,height=500');
    return false;
  }
});

Event.addBehavior({
  'a.article-popup:click' : function () {
    window.open(this.href+'?layout=popup', '_blank','scrollbars=yes,width=1024,height=600');
    return false;
  }
});
