// JavaScript Document

function infos(PAGE,L,H)
{
popup = window.open(''+PAGE,'informations','toolbar=0,location=0,directories=0,menuBar=0,resizable=0,scrollbars=yes,width='+L+',height='+H+',left=75,top=60');
if (popup && popup.focus) popup.focus();
}

<!-- SCRIPT D'IMPLANTATION
function add(text) {
	text = ' ' + text + ' ';
	if (document.form.message.createTextRange && document.form.message.caretPos) {
		var caretPos = document.form.message.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
		document.form.message.focus();
	} else {
	document.form.message.value  += text;
	document.form.message.focus();
	}
}
//-->