<script>
function adduser()
{
str='<table width="599" height="121" border="0" cellpadding="0" cellspacing="0">';
str+='<tr><td width="43" height="29">&nbsp;</td>';
str+='<td width="221"><font color="white" size="3">UserName</font><input name="username" value="" size="12" height="20"></td>';
str+='<td width="139"><font color="white" size="3">Pwd</font><input type="password" name="pwd" value="" size="12" height="20"></td>';
str+='<td width="196"><font color="white" size="3">Confirm</font><input type="password" name="confirmpwd" value="" size="12" height="20"></td>';
str+='</tr><tr>';
str+='<td>&nbsp;</td>';
str+='<td><font color="white" size="3">Company&nbsp;&nbsp;</font><input name="company" value="" size="20" height="20"></td>';
str+='<td colspan="2"><font color="white" size="3">Limit Authority</font>';
str+='<select><option value="1">Administrator</option>';
str+='<option value="2">kdlsadsl</option>';
str+='<option value="3">sdlkfjdlksj</option>';
str+='<option value="4">sdlkfjdlksj</option>';
str+='</select></td>';
str+='</tr><tr>';
str+='<td height="39">&nbsp;</td>';
str+='<td colspan="3"><font color="white" size="3">Re:</font><br><input ID="re" name="re" size="65" height="20"></td>';
str+='</tr><tr>';
str+='<td>&nbsp;</td>';
str+='<td colspan="3"><font color="white" size="3"><input type="button" name="addok" value="addok" onClick="parent.addok();"></font></td>';
str+='</tr></table>';
document.all.operationuser.innerHTML=str;
}function addok()
{
alert("kkkk")
// &acute;_&Otilde;J&#402;&Eacute;&#8218;€ pwd &Ecirc;&Ccedil;·&ntilde;&Iuml;à&Iacute;&not;
if (document.all.pwd.value==document.all.confirmpwd.value)
{
document.all.edituser.action="edituserinfo.asp?operator=addok";
document.all.edituser.submit();
}
else
{
alert("you Password and ConfirmPassword can't match!");
return;
}

}
</script><body bgcolor="blue"><table width="0" height="0" border="0" cellpadding="0" cellspacing="0">
<tr>       
    <td align="center" width="486">
  <input type="button" name="adduser" value="AddUser" onClick="adduser();">
</td>
    </tr>
</table><table>
 <form name="edituser" action="edituserinfo.asp" method="post" target="iframe1">
    <tr> 
      <td id="operationuser" name="operationuser"></td>
    </tr>
  </form>
</table>
<body>