{
$STR = <<<EOT
-<!DOCTYPE html>
+<script>
+function myFunction() {
+
+var x;
+
+x=document.getElementById("myInput");
+if (x.type==="password") {
+ x.type="text";
+ }
+else {
+ x.type = "password";
+ }
+}
+</script>
+
<table border="0" align="center" width="350" cellpadding="0" cellspacing="0">
<tr>
<td><img src="/reg-icons/login.gif" alt="" border="0" /></td>
<tr>
<td align="left" nowrap="nowrap">Passord:</td>
<td>
- <input type="password" name="passwd" size="20" onchange="" />
+ <input type="password" name="passwd" size="20" id="myInput" />
+ <input type="checkbox" onclick="myFunction()">Show
</td>
</tr>
</table>