var ShortcutKey=new Class({Implements:[Options,Events],options:{},initialize:function(a){this.setOptions(a);},addShortcutKey:function(sender,object){if($(sender)==null||$(object)==null){return;}$(sender).addEvent("keypress",function(_event){if(_event.key=="enter"){var b=$(object);if(b&&typeof(b.click)=="undefined"){b.click=function(){var result=true;if(b.onclick){result=b.onclick();}if(typeof(result)=="undefined"||result){eval(b.getAttribute("href"));}};}b.click();}}.bindWithEvent());}});var MyShortcutKey=new ShortcutKey();
