function isNumber(strValue)
{
	if (strValue.length == 0) {
		return false;
	}
	for (var i = 0; i < strValue.length; i++) {
		if ("0123456789".indexOf(strValue.charAt(i)) == -1) {
			return false;
		}
	}
	return true;
}

function chkid(confrm){
	if (confrm.conid.value == "") {
		alert("文書番号を入力してください。");
		return false;
	}

	if (confrm.conid.value.length > 0 && (confrm.conid.value.length != 6 || !isNumber(confrm.conid.value) )) {
		alert("6桁の半角数字を入力してください。");
		return false;
	}
	return true;
}		
