<style> td {
border: 1px solid;
vertical-align: top;
}
</style>
<script type="text/javascript" language="JavaScript">
/**
* Display the element 'idShow' and hide the element 'idHide'.
*
* @param idShow the id of the element to show.
* @param idHide the id of the element to hide.
*/
toggleElements = function(idShow, idHide)
{
var elementHide = document.getElementById(idHide); var elementShow = document.getElementById(idShow);
if (elementHide && elementShow)
{
elementHide.style.display = 'none';
elementShow.style.display = '';
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.