function deptDialog(name){
$("#deptDialog").dialog({
title: name,
width: 700,
height: 450,
modal: true,
resizable: true,
toolbar:[{
text:'新增部门',
iconCls:'icon-add',
handler:function(){
alert('edit')
}
}]
});
$("#deptDialog").panel("move",{top:200});//有滚动条时的窗口定位
}