Hi, how can I edit this script so the password would be encrypted when its typed... ie wont show when typed :s
<script language="JavaScript">
<!--hide
var password;
var pass1="password1";
password=prompt('Please enter your password',' ');
if (password==pass1)
alert('Correct password, click OK to enter.');
else
{
location.href="incorrect.html";
}
//-->
</script>


