diff options
author | arun <arun@nubati.net> | 2006-12-15 11:26:22 +0000 |
---|---|---|
committer | arun <arun> | 2006-12-15 11:26:22 +0000 |
commit | 1bb3313519b27a11d6634b584301f4d65f3ff364 (patch) | |
tree | 8bc428fe054ed3de939f5d6775ded3ea2a22e31e /output.php | |
parent | 4d12bf8c86b466aff0ba2252ecb42830478a1a8a (diff) | |
download | e-DoKo-1bb3313519b27a11d6634b584301f4d65f3ff364.tar.gz e-DoKo-1bb3313519b27a11d6634b584301f4d65f3ff364.tar.bz2 e-DoKo-1bb3313519b27a11d6634b584301f4d65f3ff364.zip |
moved more stuff from index.php to output.php
Diffstat (limited to 'output.php')
-rw-r--r-- | output.php | 52 |
1 files changed, 52 insertions, 0 deletions
@@ -168,4 +168,56 @@ function home_page() return; } +function output_header() +{ +?> +<!DOCTYPE html PUBLIC + "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" + "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> + <head> + <title>e-Doko</title> + <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" /> + <link rel="stylesheet" type="text/css" href="css/standard.css" /> + <script type="text/javascript"> + function hl(num) { + if(document.getElementById){ + var i; + for(i=1;i<13;i++){ + if(document.getElementById("trick"+i)) + document.getElementById("trick"+i).style.display = 'none'; + } + document.getElementById("trick"+num).style.display = 'block'; + } + } + function high_last(){ + if(document.getElementById){ + var i; + for(i=12;i>0;i--) { + if(document.getElementById("trick"+i)) + { + hl(i); + break; + } + } + } + } + </script> + </head> +<body onload="high_last();"> +<div class="header"> +<h1> Welcome to E-Doko </h1> +</div> + +<?php + return; +} + +function output_footer() +{ + echo "</body>\n"; + echo "</html>\n"; + + return; +} ?>
\ No newline at end of file |