function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=500,height=500,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>FETT</b> &#60;/b&#62;<br><br>');
popup.document.write('&#60;i&#62; <i>KURSIV</i> &#60;/i&#62;<br><br>');
popup.document.write('&#60;u&#62; <u>UNTERSTRICHEN</u> &#60;/u&#62;<br><br><br><br>');
popup.document.write('Einfügen eines Bildes:<br> &#60img src="http://localhost/cctraun_website/bilder/test.jpg" width="121" height="121"&#62 ;<br><br><br>');
popup.document.write('Einfügen eines Links:<br> &#60a href="http://localhost/cctraun_website/bilder/down.jpg" target="mitte" class="link"&#62Bild&#60/a&#62 ;<br><br><br>');
popup.document.write('andere Schriftgröße:<br> &#60div style="font-size:18px"&#62 TEXT &#60/div&#62 ;<br><br><br>');
popup.document.write('Es kann auch jede andere html-Funktion verwendet werden! <br>Auf die End-Klammern nicht vergessen!<br><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> - <a href="http://newswriter2005.sourceforge.net/" target="_blank">Project</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;
	}
}
