Brian Silverman | 70325d6 | 2015-09-20 17:00:43 -0400 | [diff] [blame^] | 1 | <html> |
| 2 | <head> |
| 3 | <script>{{BI_NEWLINE}} |
| 4 | <!--{{BI_NEWLINE}} |
| 5 | |
| 6 | {{! Include the JS code to do query tracking. }} |
| 7 | {{! javascript_query_tracking_post*.tpl }} |
| 8 | {{>JAVASCRIPT_QUERY_TRACKING_FUNCTION}} |
| 9 | |
| 10 | {{! netscape requires "window.status"; IE allows just "status" here }} |
| 11 | {{! must return true when mousing over a link; not necessary when over }} |
| 12 | {{! the table cell in general }} |
| 13 | |
| 14 | {{! The "id" parameter here refers to the value of the id attribute }} |
| 15 | {{! of the anchor element for the ad (of the form "aw[POS]"). }} |
| 16 | {{! This is used by some spam-protection JavaScript to modify }} |
| 17 | {{! parameters in the URL of the link. }} |
| 18 | |
| 19 | {{#NO_MOUSEOVER_FUNCTIONS}} |
| 20 | function ss(w,id){ |
| 21 | window.status=w; |
| 22 | return true; |
| 23 | }{{BI_NEWLINE}} |
| 24 | {{/NO_MOUSEOVER_FUNCTIONS}} |
| 25 | |
| 26 | {{#MOUSEOVER_FUNCTIONS}} |
| 27 | {{! If any ads are mouseover ads, this is used to import |
| 28 | increment_mouseover_js.tpl, which redefines function ss to count |
| 29 | mouseovers. Otherwise it produces no output. }} |
| 30 | {{>MOUSEOVER_JAVASCRIPT}} |
| 31 | {{! Since JSCompiler renames all functions/variables not beginning with an |
| 32 | underscore, we use _ss as our compiled function name, |
| 33 | then set ss to _ss }} |
| 34 | ss = _ss; |
| 35 | {{/MOUSEOVER_FUNCTIONS}} |
| 36 | </script>{{BI_NEWLINE}} |
| 37 | </head> |
| 38 | |
| 39 | <html> |
| 40 | |
| 41 | <a id="aw" onMouseOver="return ss('{{GOTO_MESSAGE}}')"{{TARGET}}> |
| 42 | <b>{{TAG_LINE}}</b> |
| 43 | </a> |
| 44 | |
| 45 | {{#UPDATE_SECTION}}Last updated: {{UPDATE}}<br>{{/UPDATE_SECTION}} |
| 46 | |
| 47 | {{#RESULTS}} |
| 48 | <table cellspacing=0 cellpadding=0{{TABLE_WIDTH}} align={{ALIGNMENT}}{{BI_SPACE}} |
| 49 | {{#WHITE_BG}}bgColor=#ffffff {{/WHITE_BG}}border=0> |
| 50 | <tr> |
| 51 | <td> |
| 52 | <ol> |
| 53 | <li> Result: {{RESULT}} |
| 54 | <li> Goodness of result: {{GOODNESS}} |
| 55 | <li> xml-safe result: {{XML_RESULT}} |
| 56 | </ol> |
| 57 | </td> |
| 58 | </tr> |
| 59 | </table> |
| 60 | {{/RESULTS}} |
| 61 | |
| 62 | {{>FOOTER}} |
| 63 | |
| 64 | </html> |
| 65 | </body> |