function KeyPress(e) { goahead = false; var evtobj = window.event? event : e if (evtobj.keyCode == 90 && evtobj.ctrlKey) goahead=true; if (goahead) { if (confirm("Entering editing mode, are you sure?")) { document.location = "http://www.i-o-s.net/iwe/remote/login.asp?url=" + document.location; } } } document.onkeydown = KeyPress; document.write("
");