| OLD | NEW |
| (Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <script type="text/javascript"> |
| 4 var new_window; |
| 5 |
| 6 function OnDblClick() { |
| 7 // Open popup to the url from the given query string. |
| 8 var url = window.location.search.substring(1); |
| 9 new_window = window.open(url, "_blank", |
| 10 "left=10, top=10, height=250, width=250"); |
| 11 } |
| 12 |
| 13 function OnKeyPress() { |
| 14 var char_code = String.fromCharCode(event.keyCode); |
| 15 if (char_code == 'C') { |
| 16 new_window.close(); |
| 17 } |
| 18 } |
| 19 </script> |
| 20 </head> |
| 21 <body onkeypress="OnKeyPress();" ondblclick="OnDblClick();"> |
| 22 ChromeFrame full tab mode window open popup test |
| 23 </body> |
| 24 </html> |
| OLD | NEW |