| 1 | | {{{ |
| 2 | | #!html |
| 3 | | <style type="text/css"> |
| 4 | | .legacybox { |
| 5 | | border: 2px solid #695D54; |
| 6 | | background: #FFFACD; |
| 7 | | margin-top: 8px; |
| 8 | | margin-left: 0px; |
| 9 | | margin-right: 10px; |
| 10 | | padding: 2px 5px 2px 8px; |
| 11 | | text-align: left; |
| 12 | | } |
| 13 | | .legacybox p { |
| 14 | | font: 12px lucida grande, geneva, helvetica, arial, sans-serif; |
| 15 | | margin-top: 2px; |
| 16 | | } |
| 17 | | .legacybox h1 { |
| 18 | | font: 14px lucida grande, geneva, helvetica, arial, sans-serif; |
| 19 | | font-weight: bold; |
| 20 | | text-align: center; |
| 21 | | margin-top: 5px; |
| 22 | | margin-bottom: 8px; |
| 23 | | } |
| 24 | | </style> |
| 25 | | |
| 26 | | <script type="text/javascript"> |
| 27 | | function placeWatermark() { |
| 28 | | if (document.layers) { |
| 29 | | document.watermark.pageX = (window.innerWidth - document.watermark.document.myImage.width)/2; |
| 30 | | document.watermark.pageY = (window.innerHeight - document.watermark.document.myImage.height)/2; |
| 31 | | document.watermark.visibility = 'visible'; |
| 32 | | } |
| 33 | | } |
| 34 | | |
| 35 | | function closeWatermark() { |
| 36 | | |
| 37 | | if(document.all){ |
| 38 | | watermark.style.visibility = "hidden"; |
| 39 | | } else if(document.layers) { |
| 40 | | document.watermark.visibility = "hidden"; |
| 41 | | } else if(document.getElementById && !document.all) { |
| 42 | | document.getElementById("watermark").style.visibility = "hidden"; |
| 43 | | } |
| 44 | | |
| 45 | | } |
| 46 | | </script> |
| 47 | | |
| 48 | | <script>placeWatermark()</script> |
| 49 | | <div style="width:100%; position:fixed;"> |
| 50 | | <div align="center" id="watermark" style="position: relative; margin-left:auto; margin-right:auto; z-index:20; width:500px;"> |
| 51 | | <div class="legacybox" style="position: relative;"> |
| 52 | | <h1>Not reviewed for accuracy</h1> |
| 53 | | <p><b>Important:</b> |
| 54 | | This documentation had not been reviewed for accuracy, and may not |
| 55 | | reflect the current state of CCL. |
| 56 | | </p> |
| 57 | | <p> |
| 58 | | <span class=closebutton> |
| 59 | | <a href="javascript:closeWatermark()">close</a> |
| 60 | | </span> |
| 61 | | </p> |
| 62 | | </div> |
| 63 | | </div> |
| 64 | | </div> |
| 65 | | }}} |