Come faccio ad eseguire una funzione personalizzata sull'evento ctr-v della tastiera???

function IE_kb_handler(evt)
{
var keyCode=evt.keyCode;
if (keyCode==86)
{
incolla();
return false;
}

}
Ho provato a fare cosi ma mi incolla 2 volte.

P.S. l'evento è legato ad un iframe in designeMode.
Grazie