function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=300,height=400,left=0,top=0"); 
popup.document.write('<html><head><title>Hilfe zu den Terminen</title>');
popup.document.write('</head><body>');
popup.document.write('<h3>Hilfe zur Formatierung</h3><br>');
popup.document.write('<b> &lt;b&gt;fetter Text&lt;/b&gt; </b><br><br>');
popup.document.write('<i> &lt;i&gt;kursiver Text&lt;/i&gt; </i><br><br>');
popup.document.write('<u> &lt;u&gt;unterstrichener Text&lt;/u&gt; </u><br>(bitte moeglichst nicht!)<br><br>');
popup.document.write('auch andere Tags sind moeglich, m&uuml;ssen aber immer auch mit dem abschliessenden Tag beendet werden<br><br>');
popup.document.write('<a href="http://www.asciitable.com/" target="_blank">Ascii-Codes</a> - <a href="http://www.htmlhelp.com/reference/html40/alist.html" target="_blank">html-Reference</a>');
popup.document.write('</body></html>');
popup.focus();
return true;
}

function check()
{
	input_box=confirm("Sind Sie sicher?");
	if (input_box==true)

	{ 
	// Output when OK is clicked
	return true;
	}

	else
	{
	// Output when Cancel is clicked
	return false;
	}
}