//	Create a global variable for easy browser testing
var isNavigator = (document.all) ? 0 : 1;

/*
**	pageTop()
**	Stuff to generally format the page
*/
function pageTop() {
	document.write("<table width=575px align=left><tr><td>");
}

/*
**	pageBottom()
**	Stuff to generally format the page
*/
function pageBottom() {
	document.write("</td></tr></table>");
}

/*
**	lastChange()
**	Generic function to display the timestamp of the documsnt's last
**	change.
**
**	Parameters:	none
**	Requires:	docDate CSS font class
*/
function lastChange() {
	mod = document.lastModified;
	document.write("<br clear=\"all\"><hr noshade size=1><table cellspacing=0 cellpadding=0 border=0 width=100%><tr>");
	document.write("<td align=left valign=top nowrap><font class=docDate>Letzte &Auml;nderung: "+mod+"</p></td>");
	document.write("<td align=right valign=top nowrap><font class=docDate><a class=docDate href=\"http://www.suessmaier.de\" target=_top>www.suessmaier.de</a></p></td>");
	document.write("</tr></table>");
}

function lastChangeE() {
	mod = document.lastModified;
	document.write("<hr noshade size=1><table cellspacing=0 cellpadding=0 border=0 width=100%><tr>");
	document.write("<td align=left valign=top nowrap><font class=docDate>Last change: "+mod+"</p></td>");
	document.write("<td align=right valign=top nowrap><font class=docDate><a href=\"http://www.suessmaier.de\" target=_top>www.suessmaier.de</a></p></td>");
	document.write("</tr></table>");
}

function lastChangeStephan() {
	mod = document.lastModified;
	document.write("<hr noshade size=1><table cellspacing=0 cellpadding=0 border=0 width=100%><tr>");
	document.write("<td align=left valign=top nowrap><font class=docDate>Letzte &Auml;nderung: "+mod+"</p></td>");
	document.write("<td align=right valign=top nowrap><font class=docDate><a href=\"http://www.suessmaier.de/stephan\" target=_top>www.suessmaier.de/stephan</a></p></td>");
	document.write("</tr></table>");
}

function oberzierDisclaimer() {
	document.write("<p class=\"normal\">");
	document.write("Das Gerät wurde von der Firma <a href=\"http://www.oberzier.com\" target=\"_top\"> Oberzier");
	document.write(" Elektronik GmbH</a> (Hardware) in Zusammenarbeit mit uns (Software) entwickelt.");
	document.write(" Die gesamte Produktbetreuung und Weiterentwicklung obliegt der Firma Oberzier,");
	document.write(" der Vertrieb erfolgt über die Firma Oberzier sowie deren Vertriebspartner. Wir" );
	document.write(" sind in diesem Fall weitestgehend reine Auftragnehmer, die Bereitstellung bzw.");
	document.write(" Veröffentlichung von Online-Dokumentationen gehört zu unseren optionalen");
	document.write(" Dienstleistungen im Zusammenhang mit von uns durchgeführten Software Entwicklungen.");
}

