blocking ctrl-p print

blocking ctrl-p print

using jquery 1.3.2 I'm trying to capture ctrl-p keyboard event and stop it from launching the print dialog
the following works in FF3, but not IE6
any help appreciated

$(function(){  
    $(document).keydown(function(objEvent) {       
        if (objEvent.ctrlKey) {         
            if (objEvent.keyCode == 80) {               
                objEvent.preventDefault();           
                objEvent.stopPropagation();
                return false;
            }           
        }       
    });
});