function CheckSpell()
{
	var form = document.forms['message'];
	if (!form) return 0;

	var target = form.target;
	var action = form.action;
	form.target = 'CheckSpell';
	form.action = '/post/checkspell/';

	var wCheck = window.open ('','CheckSpell','top=100,left=100,width=550,height=430,location=no,menubar=no,resizeable=no,status=no,toolbar=no,scrollbars=yes');
	if (wCheck){
		//var body = wCheck.document.body;
		//if (body) wCheck.document.body.innerHTML = '';
		wCheck.focus();
	}
	form.submit();

	form.target = target;
	form.action = action;
}

