if(!CP){var CP={};}CP.Common=function(){};CP.Common.VERSION="$Id: $";CP.Common.EXPORT=["enterKeyPressed"];CP.Common.enterKeyPressed=function(evt){var instance=new CP.Common;return instance.enterKeyPressed(evt);};CP.Common.prototype={_isEnterKey:function(e){var charCode;if(e&&e.which){e=e;charCode=e.which;}else{e=window.event;charCode=e.keyCode;}if(charCode==13){return true;}return false;},enterKeyPressed:function(e){return this._isEnterKey(e);}};