/***************************
help.js
Copyright 2002 Michel Racine
***************************/

function help(message, width, height) {
var param= "menubar=no,status=no,scrollbars=yes,resizable=yes,width="+ width + ",height=" + height;
var mywindow= window.open("", "help", param);
with (mywindow.document) {
	write('<html>');
	write('<head><title>aide</title>');
	write('</head>');
	write('<body onload="window.focus();">');
	write(message, '<br>');
	write('<div style="text-align: right;"><form><input type="button" value="Fermer" onclick="window.close();"></form></div>');
	write('</body>');
	write('</html>');
	close();
	}
}















