document.onkeypress = catchkey ;
function catchkey(e) {
key =((window.event) ?event : e).keyCode;
if (key == 9) alert("Tab Key");
return ; }