function sendMsg(vehlic, terid){
form = new Ext.FormPanel({autoScroll :true,
    items: [{xtype: 'textfield',value:vehlic,fieldLabel: '车牌号',disabled:true},
            {name: 'terid',xtype: 'hidden',value:terid,fieldLabel: '终端ID'},
            {name:'msg',xtype:'textarea',fieldLabel :'内容',allowBlank :false,width:228,height:145}],
            buttons:[{text: '发送',handler : function(){
         if(form.getForm().isValid()) {
form.getForm().doAction('submit', { url : 'gps/vehicle.do?link=sendGb2312Message', method : 'post',
success:function(form,action){
Ext.MessageBox.alert('提示',action.result.data);
win.close();
},failure:function(form,action){
Ext.MessageBox.alert('错误','发送失败');
}
});
}
          }
    }]
    });
showWindow("下发信息");
}