Dual Monitors

 From:  dan (DANLANIGAN)
7394.15 In reply to 7394.14 
Michael,

I did a little research and think maybe this code snippet will help but I don't know where to place it.

var myWindow = window.open();

myWindow.onkeydown = function(e){
if(e.keyCode === 27){
e.preventDefault();
}
};