<script language="JavaScript">
<!--
var iWhich=-1;
function checkCount() {
var intCount=0;
if(document.thisform.strSno.length>1) {
for(i=0;i<document.thisform.strSno.length;i++) {
if(document.thisform.strSno[i].checked)
intCount=intCount+1;
}
} else {
if(document.thisform.strSno.checked) intCount++;
}
return intCount;
}
function onOK() {
var iCount=checkCount();
var dept_name = "";
var ls_dept_name = "";
var ls_db_link = "";
if(iCount<=0) {
alert("请选择部门!");
return;
}
if (document.thisform.strSno.length>1){
for(i=0;i<document.thisform.strSno.length;i++) {
if(document.thisform.strSno[i].checked) {
dept_name = document.thisform.dept_name[i].value ;
ls_dept_name = ls_dept_name+ dept_name+",";
}
ls_dept_name = ls_dept_name.substring(0,ls_dept_name.length-1);
parent.opener.document.thisform.dept_name.value=ls_dept_name;
} else {
parent.opener.document.thisform.dept_name.value=document.thisform.dept_name.value;
}
window.close();
}