+<head><title>$title</title>
+ <link href="/static/favicon.ico" type="image/x-icon" rel="shortcut icon">
+ <style media="screen" type="text/css">
+ @import "static/css/all.css";
+ </style>
+ <script type="text/javascript">
+var helpWin = null;
+function closeWin(){
+ if (helpWin != null){
+ if(!helpWin.closed)
+ helpWin.close();
+ }
+}
+
+function helppopup(name){
+ closeWin()
+ helpWin = window.open("help?simple=true&subject="+encodeURIComponent(name), "Help",
+"status, height = 300, width = 400");
+ if (window.focus){helpWin.focus();}
+ return false;
+}
+</script>
+</head>