function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=300,left=0,top=0");
popup.document.write('<html><head><title>Newswriter Help</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('Hallo Leute. Erweiterte Hilfe gibt es im Editorbereich. => (NEWS VERFASSEN). Dort auf das Fragezeichen klicken. Viel Spass mit dem zum Jull Newsblog umgebauten Newswriter  w&uuml;nscht<br><br> SCHORSCH<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;
	}
}
