gracias por vuestra ayuda
Código HTML:
<html> <head> <script language="JavaScript"> var control = false; function checkKey(evt) { if (evt.keyCode == 17){ control = true; return true; } if(control){ alert("no toques"); return false; } } function salir(evt) { if (evt.keyCode == 17) control = false; } </script> </head> <body onKeyDown="checkKey(event)" onKeyUp="salir(event);"> Pulsa el boton control. </body> </html>