| 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> |
|---|
| 2 | <html> |
|---|
| 3 | <head> |
|---|
| 4 | <title></title> |
|---|
| 5 | <script type="text/javascript"> |
|---|
| 6 | |
|---|
| 7 | window.onload = function() |
|---|
| 8 | { |
|---|
| 9 | document.body.onmouseup = Body_OnMouseUp ; |
|---|
| 10 | } |
|---|
| 11 | |
|---|
| 12 | function Body_OnMouseUp( e ) |
|---|
| 13 | { |
|---|
| 14 | window.parent.Show ( e ? e.target : event.srcElement ) ; |
|---|
| 15 | } |
|---|
| 16 | </script> |
|---|
| 17 | <style type="text/css"> |
|---|
| 18 | body |
|---|
| 19 | { |
|---|
| 20 | height:100%; |
|---|
| 21 | } |
|---|
| 22 | </style> |
|---|
| 23 | </head> |
|---|
| 24 | <body bgcolor="#dcdcdc"> |
|---|
| 25 | <div align="center"> |
|---|
| 26 | <form> |
|---|
| 27 | <input id="xButton" type="button" value="Show relative to this"> |
|---|
| 28 | </form> |
|---|
| 29 | </div> |
|---|
| 30 | <br> |
|---|
| 31 | <p> |
|---|
| 32 | This is an IFRAME |
|---|
| 33 | </p> |
|---|
| 34 | </body> |
|---|
| 35 | </html> |
|---|