File: header.js

package info (click to toggle)
togl 2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,504 kB
  • sloc: ansic: 5,979; sh: 591; python: 75; javascript: 19; makefile: 16
file content (20 lines) | stat: -rw-r--r-- 746 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function displayHeader(pageTitle)
{
	document.write("<center><h1>" + pageTitle + "</h1></center>");
}

function NavigationBar()
{
	document.write("<table rules='cols' cellpadding='4'>");
	document.write(" <tr>");
	document.write(" <td><a href='index.html'>Index</a></td>");
	document.write(" <td><a href='index.html#intro'>Intro</a></td>");
	document.write(" <td><a href='download.html'>Download/Install</a></td>");
	document.write(" <td><a href='using.html'>Using Togl</a></td>");
	document.write(" <td><a href='tclapi.html'>Tcl API</a></td>");
	document.write(" <td><a href='capi.html'>C API</a></td>");
	document.write(" <td><a href='faq.html'>FAQ</a></td>");
	document.write(" </tr>");
	document.write("</table>");
	document.write("<hr>");
}