<!--
/**
 * 查询并选择工作岗位
 */
function getfunc1(obj1, obj2){
    var funcid = showfuncwin();
    if(funcid){
        funcid += "";
        pointSelect(obj1, funcid.substr(0,2));
        obj1.onchange();
        pointSelect(obj2, funcid);
    }
}

/**
 * 打开一个查询工作岗位的窗口
 */
function showfuncwin(urls){
    //window.open("public/_funclist.php","","top=150,left=200,width=400px,height=500px");
    var url = "../come_true/_funclist.php";
    var winparameter = "dialogWidth:480px;dialogHeight:500px;dialogLeft:200px;dialogTop:150px;"
        + "center:yes;help:no;resizable:yes;status:no";
    var funcid = showModalDialog(url,"", winparameter);
    return funcid;
}
-->