function help() { 
popup = window.open("about:blank","_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=400,height=300,left=0,top=0"); 
popup.document.write('<html><head><title>Newswriter Help</title>');
popup.document.write('</head><body>');
popup.document.write('<h3>Aide Codage de mise en forme HTML</h3><br>');
popup.document.write('<h4>Osmosis Int</h4><br>');
popup.document.write('&#60;b&#62; <b>Bold text</b> &#60;/b&#62;<br><br>');
popup.document.write('&#60;i&#62; <i>Italic text</i> &#60;/i&#62;<br><br>');
popup.document.write('&#60;u&#62; <u>Underlined text</u> &#60;/u&#62;<br><br><br>');
popup.document.write('</body></html>');
popup.focus();
return true;
}

function check()
{
	input_box=confirm("Etes-vous sūr de vouloir supprimer cette news ?");
	if (input_box==true)

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

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