var nav=navigator.appName; var ns=(nav.indexOf("Netscape")!=-1); if(ns){ if(document.layers){ document.captureEvents(Event.KEYPRESS); document.onkeypress = cheat; } if(document.getElementById){ document.onkeypress = cheat; } } else {document.onkeypress = cheat;} var SpecialWord = "login"; var SpecialLetter = 0; var vcheat = false function cheat(keyStroke) { var eventChooser = (ns)?keyStroke.which: event.keyCode; var which = String.fromCharCode(eventChooser).toLowerCase(); if(which == SpecialWord.charAt(SpecialLetter)){ SpecialLetter++; if (SpecialLetter == SpecialWord.length){ showmodal("http://www.liacmedia.nl/login", "300", "300"); /*window.location = "http://www.liacmedia.nl/login";*/ } } else {SpecialLetter = 0;vcheat = false} }