请问给位高手,我要将下面的js引入到html中请问各位这应该怎么引,还有我这个项目中好些页面都要用这些这样相同的js除了id 名称不一样,请问各位我应该怎么处理这样的问题,(我不想将它直接放在html中,我要将其放在单独的js中引入)
 <script>
KE.show({
id : 'teamOrganise',
resizeMode : 3,
allowPreviewEmoticons : false,
allowUpload : false,
items : [
'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'image', 'link']
});
</script>我的其中一个页面代码如下:
<%@ page language="java" contentType="text/html; charset=GB18030"  pageEncoding="GB18030"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>课程组教学队伍信息</title>
<link rel="stylesheet" href="style/drp.css">
<link href="style/JSCalendar.css" rel=stylesheet type=text/css>
<script src="script/JSCalendar.js"></script>
<script src="script/client_validate.js"></script>
<script charset="utf-8" src="kindeditor.js"></script>
<script>

</script>
<script>
KE.show({
id : 'teamOrganise',
resizeMode : 3,
allowPreviewEmoticons : false,
allowUpload : false,
items : [
'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold', 'italic', 'underline',
'removeformat', '|', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
'insertunorderedlist', '|', 'emoticons', 'image', 'link']
});
</script>
</head> <body class="body1">
<form name="InvIniQtyForm"  action="TeamStructure.do?command=modifyTeachTeam" method="post" target="_self" id="InvIniQtyForm">
<div align="center">
<table width="95%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td>&nbsp;

</td>
</tr>
</table>
<table width="95%" border="0" cellspacing="0" cellpadding="0"
height="8">
<tr>
<td width="522" class="p1" height="2" nowrap>
<img src="images/_arrow_03.gif" width="14" height="14">
&nbsp;
<b>课程组教学队伍模块&gt;&gt;课程组教学队伍信息&gt;&gt;修改</b> </td>
</tr>
</table>
<hr width="97%" align="center" size=0>
<table width="95%" border="0" cellpadding="0" cellspacing="0">

<tr>
<td height="26">
<div align="right">
<font color="#FF0000"></font>教学队伍整体结构:&nbsp;
</div>
</td>
<td>
  <textarea name="teamOrganise" id="teamOrganise" class="t_area" class="t_area">
  ${structure.teamOrganise}
  </textarea>
</td>
</tr>


<tr>
<td height="26">
<div align="right">
<font color="#FF0000"></font>青年教师培养:&nbsp;
</div>
</td>
<td>
<textarea id="qnjdpy" name="qnjdpy" class="t_area">
   ${structure.qnjdpy }
   </textarea>
</td>
</tr>
</table>
<hr width="97%" align="center" size=0>
<div align="center">
<input name="btnAdd" class="button1" type="submit" id="btnAdd"
value="确定">
&nbsp;&nbsp;&nbsp;&nbsp;
<input name="btnBack" class="button1" type="button" id="btnBack"
value="返回" onClick="history.go(-1)">
</div>
</div>
</form>
</body>
</html>
请各问帮忙看一下,谢谢啦!