	/* Calls up Page Header function, inserts Navigation Links if required and Opens Content Table Cell,*/
	function PageTop( navilinks ) {

		if ( navilinks != 'no') { document.write('<a name="top"></a>'); }

		document.write('<table style="padding:0px; height:100%; width:100%;" border="0">');

			// erste Tabellenreihe
			document.write('<tr>');
				document.write('<td style="vertical-align:top; height:70px; border:0px solid blue">');

					PageHeader();		/* Inserts Page Header */
					document.write('<p class="sos-doc-page-navi-top">');
					if ( navilinks != 'no') {
						/*document.write('<a class="sos-doc-simple-link" href="#bottom">Seitenende</a>');*/
						document.write('<a class="sos-doc-simple-link" href="#bottom">Foot of Page</a>');
					}
					document.write('</p>');

				document.write('</td>');
			document.write('</tr>');

			// mittlere Tabellenreihe, hier kommt der Inhalt der Seite hinein
			document.write('<tr>');
				document.write('<td style="vertical-align:top; border:0px solid red">');
	}


	/* Inserts Page Header */
	function PageHeader() {

		document.write('<h1 class="sos-doc-header"><span class="sos-small-caps">Job Scheduler - Technical Description</span></h1>');
	}


	/* Closes Content Table Cell, inserts Navigation Links if required and calls up Page Footer function*/
	function PageBottom( navilinks ) {

				document.write('</td>');
			document.write('</tr>');

			// letzte Tabellenreihe
			document.write('<tr>');
				document.write('<td style="vertical-align:bottom; height:60px; border:0px solid blue">');

					document.write('<p class="sos-doc-page-navi-bottom">');
					if ( navilinks != 'no' ) {
						/*document.write('<a class="sos-doc-simple-link" href=#top>Seitenanfang</a>');*/
						document.write('<a class="sos-doc-simple-link" href=#top>Top of Page</a>');
					}
					document.write('</p>');
					PageFooter();		/* Inserts Page Footer */

				document.write('</td>');
			document.write('</tr>');

		document.write('</table>');
  }


	/* Inserts Page Footer */
	function PageFooter() {

		document.write('<table width="100%" height="72px" valign="top" border="0" cellspacing="0" cellpadding="0">');

    	document.write('<tr>');
    		document.write('<td colspan="2" style="border:0px solid red; vertical-align:bottom;">');
    			document.write('<a name="bottom"></a><hr/>');
    		document.write('</td>');
    	document.write('</tr>');

    	document.write('<tr>');
	    	document.write('<td colspan="2" height="8px" style="border:0px solid red">');
	    	document.write('</td>');
    	document.write('</tr>');

      document.write('<tr>');
        document.write('<td width="35%" height="37px" valign="top" style="border:0px solid green">');
          document.write('<p class="sos-doc-footer-left">Revised: July 2009</p>');
          document.write('<a class="sos-doc-footer-left" href="mailto:info@sos-berlin.com">info@sos-berlin.com</a>');
        document.write('</td>');
        document.write('<td width="65%" valign="top" style="border:0px solid blue">');
          document.write('<p class="sos-doc-footer-right">&copy;&nbsp;');
            document.write('Software- und Organisations-Service GmbH<br>');
            document.write('Giesebrechtstr. 15, 10629 Berlin, Germany');
          document.write('</p>');
        document.write('</td>');
      document.write('</tr>');

		document.write('</table>');
	}
