<style>
.highlight{background-color:highlight;color:#FFFFFF}
</style>
<script language="JavaScript">
<!--
var currentRow=null
function DeleteRow(){
if(currentRow==null)return;
currentRow.parentNode.removeChild(currentRow)
currentRow=null
}
function del(oTr){
if(currentRow)currentRow.className=""
oTr.className="highlight"
currentRow=oTr
}
//-->
</script>
<TABLE ID = oTable border=1>
<TR onclick="del(this)" style="cursor:hand">
<TD>黑色金属</TD>
<TD>禁用</TD>
</TR>
<TR onclick="del(this)" style="cursor:hand">
<TD>橡胶制品</TD>
<TD>禁用</TD>
</TR>
<TR onclick="del(this)" style="cursor:hand">
<TD>料油脂</TD>
<TD>禁用</TD>
</TR>
<TR onclick="del(this)" style="cursor:hand">
<TD>花轻产品</TD>
<TD>禁用</TD>
</TR>
</TABLE>
<input type=button value="DeleteRow" onclick="DeleteRow()">