//if (document.forms.postForm.elements.text.focus)
//	document.forms.postForm.elements.text.focus();

function sF(s)
{
	document.forms.postForm.elements.msubmit.value=" ...";
	document.forms.postForm.elements.msubmit.disabled="true";
	if (s) document.forms.postForm.submit();
}


function ctrlenter(k)
{
	if (k)
	{
		ctrl=k.ctrlKey;
		k=k.which;
	}
	else
	{
		k=event.keyCode;
		ctrl=event.ctrlKey;
	}
	
	if ((k==13 && ctrl) || (k==10)) sF(true);

}
