DIMENTICAVO LO SCRIPT


<script language="Javascript">

var password = prompt("inserire la password")

if (password.toLowerCase() == "luca") {
alert("password accettata")
location = "indice.htm"
}

else {
location = "xxx.htm"
}

</script>