jQuery.softKeyboard={keyboardId:"Layer_key",passwordId:"billSubmitVoBillPassword",formId:"form1",afterCloseFunc:function(){if(this.formId!=null&&this.formId!=""){if($.formValidator!=null){$.formValidator.elemIsValidNoCallBack(this.formId,this.passwordId)}}},width:"216px",height:"106px",showKeyboard:function(){if(this.keyboardId!=null&&this.keyboardId!=""){obj=$("#"+this.keyboardId);passwordObj=$("#"+this.passwordId);if(obj!=null){var B=passwordObj.offset().top-5;var A=passwordObj.offset().left+passwordObj.width()+10;style="position:absolute;visibility:visible;";style+="width:"+this.width+"px;";style+="height:"+this.height+"px;";style+="top:"+B+"px;";style+="left:"+A+"px;";obj.attr("style",style)}}},closeKeyboard:function(){if(this.keyboardId!=null&&this.keyboardId!=""){obj=$("#"+this.keyboardId);if(obj!=null){obj.attr("style","position:absolute;visibility: hidden")}}this.afterCloseFunc()},closeKeyboard_uncheck:function(){if(this.keyboardId!=null&&this.keyboardId!=""){obj=$("#"+this.keyboardId);if(obj!=null){obj.attr("style","position:absolute;visibility: hidden")}}},clickKeyboard:function(A){passwordObj=$("#"+this.passwordId);if(A=="bak"){if(passwordObj.val().length>0){password=passwordObj.val();passwordObj.val(password.substring(0,password.length-1))}}else{if(A=="clear"){passwordObj.val("")}else{if(passwordObj.val().length<8){passwordObj.val(passwordObj.val()+A)}}}},keyboardCilck:function(){}};