Hallo Leute!
Könntet ihr mir mal bitte folgendes script
erklaeren:
var c1, c2, c3, c4, c5, c6, Eingabe;
function pass()
{
c1 = window.document.bgColor;
c2 = window.document.linkColor;
c3 = window.document.title;
c4 = c1.substring(3,5)+c2.substring(1,3)+c3.substring(2,4);
c5 = c4.toUpperCase();
c6 = c4.toLowerCase();
Eingabe = prompt("Bitte fitze hier das Passwort rein:","");
if (Eingabe==c5 || Eingabe==c6)
{
document.location.href=c6+".php";
}
else
{
alert("falsches Passwort!");
document.location.href="";
}
}
hat n kumpel irgendwo ausprobiert und ich schaffs nicht die loesung
zu bekommen !
Danke für Eure Mühe!