i have given the stmt as
[CODE=javascript]document.addEve ntListener('onk eydown', my_onkeydown_ha ndler, true);[/CODE]
and the function defined was
[CODE=javascript]function my_onkeydown_ha ndler()
{
alert('called') ;
switch (event.keyCode)
{
case 116 : // 'F5'
event.returnVal ue = false;
event.keyCode = 0;
window.status = "We...