| Index: html/templates/NotificationWindow.html | 
| diff --git a/html/templates/NotificationWindow.html b/html/templates/NotificationWindow.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..3e73864e0414323a29bb546e30b2157713d7e49a | 
| --- /dev/null | 
| +++ b/html/templates/NotificationWindow.html | 
| @@ -0,0 +1,65 @@ | 
| +<!DOCTYPE html> | 
| +<html> | 
| +  <head> | 
| +    <meta http-equiv="x-ua-compatible" content="IE=8"> | 
| +    <style> | 
| +    * { | 
| +      cursor: default; | 
| +    } | 
| + | 
| +    a { | 
| +      cursor: pointer; | 
| +    } | 
| + | 
| +    html, body, div { | 
| +      margin: 0; | 
| +    } | 
| +    .caption { | 
| +      background-color: white; | 
| +      min-height: 18px; | 
| +      clear: both; | 
| +      margin-bottom: 5px; | 
| +    } | 
| +    .closeButton { | 
| +      background-color: grey; | 
| +      color: white; | 
| +      font-weight: bold; | 
| +      font-family: "Consolas, monaco, monospace"; | 
| +      text-decoration: none; | 
| +      width: 18px; | 
| +      height: 18px; | 
| +      vertical-align: middle; | 
| +      text-align: center; | 
| +      margin-right: 10px; | 
| +      cursor: default; | 
| +    } | 
| +    .closeButton:hover { | 
| +      background-color: red; | 
| +      text-decoration: none; | 
| +    } | 
| +    .title { | 
| +      font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; | 
| +      font-size: 14px; | 
| +      font-style: normal; | 
| +      font-weight: 400; | 
| +      line-height: 15.4px; | 
| +      padding: 5px 5px 2px 10px; | 
| +    } | 
| +    .body { | 
| +      font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; | 
| +      font-size: 13px; | 
| +      font-weight: 400; | 
| +      overflow-x: hidden; | 
| +      overflow-y: auto; | 
| +      padding: 5px; | 
| +    } | 
| +    </style> | 
| +  </head> | 
| +  <body> | 
| +    <div class="caption"> | 
| +      <a class="closeButton" style="float: right;" href="#">×</a> | 
| +      <div class="title"><!--Title--></div> | 
| +    </div> | 
| +    <div class="body"><!--Body--></div> | 
| +  </body> | 
| +</html> | 
|  |