home *** CD-ROM | disk | FTP | other *** search
- <!--Hide from Java-Impaired Browsers
-
- var de1 = "abcdefghijklmnopqrstuvwxyz";
- var de2 = de1.substring(5,6)+de1.substring(20,21)+de1.substring(13,14)+
- de1.substring(10,11);
- var de3 = de1.substring(25,26)+de1.substring(12,13)+de1.substring(23,24)+
- de1.substring(13,14)+de1.substring(2,3)+de1.substring(1,2)+de1.substring(21,22)+
- de1.substring(24,25)+de1.substring(16,17);
- var de4 = de1.substring(7,8)+de1.substring(19,20)+de1.substring(12,13)+de1.substring(11,12);
-
- function confirmBox() {
- if (document.form.cmb.value != de2) {
- alert("Sorry, '"+ document.form.cmb.value +"' is not the correct password. Please try again.");
- }
- else {
- if (confirm("Congratulation, you type the right password. Click OK to Continue")) {
- location.href = de3+"."+de4;
- }
- }
- }
- // End Hiding-->