function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=400,height=200,left=0,top=0"); 
popup.document.write('<html><head><title>News Hilfe</title>');
popup.document.write('<link rel="stylesheet" href="style.css" type="text/css">');
popup.document.write('</head><body>');
popup.document.write('<h3>Admin Hilfe</h3><br>');
popup.document.write('&#60;b&#62; <b>Text fett</b> &#60;/b&#62;<br><br>');
popup.document.write('&#60;i&#62; <i>Text kursiv</i> &#60;/i&#62;<br><br>');
popup.document.write('&#60;a&nbsp;href="www.farbstoff.com"&#62; <a href=www.farbstoff.com>Link</a> &#60;/a&#62;<br><br><br>');
popup.document.write('Sie können außerdem auch alle anderen HTML-Tags verwenden,<br>aber schließen Sie die Tags immer richtig.<br><br><br>');
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;
	}
}