function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=250,left=0,top=0"); 
popup.document.write('<html><head><title>Newswriter Help</title>');
popup.document.write('');
popup.document.write('</head><body>');
popup.document.write('<h3>Nieuwsberichten hulp</h3><br>');
popup.document.write('</body></html>');
popup.focus();
return true;
}

function check()
{
	input_box=confirm("Weet u het zeker?");
	if (input_box==true)

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

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