/////////////////////////////////////////////////////////
//函数名：EnterChange()
//输入值：eventobject（类型：键盘按键事件）
//  功能：对用户的输入进行转换，自动转换特别字符
//返回值：无
////////////////////////////////////////////////////////
function EnterChange(eventobject)
{
	if (eventobject == null)
	{
		return;
	}
	var IsIE = (document.all) ? true : false
	if (IsIE)
	{
		//判断用户是否同时按下了Ctrl和Enter键
		if(window.event.keyCode == 13)
		{
			if(event.ctrlKey)//是，提交
				this.document.theForm.submit();
			//else
				//按下了回车键,换行
				//this.document.theForm.Content.value=this.document.theForm.Content.value+"<BR>";
		}
		//if(window.event.keyCode == 32)
		//{
		//	this.document.theForm.Content.value=this.document.theForm.Content.value+"&nbsp;";
		//}
		//if(window.event.keyCode == 188 && event.shiftKey)
		//{
		//	this.document.theForm.Content.value=this.document.theForm.Content.value+"&lt;";
		//}
		//if(window.event.keyCode == 190 && event.shiftKey)
		//{
		//	this.document.theForm.Content.value=this.document.theForm.Content.value+"&gt;";
		//}
		//this.document.theForm.Content.value=this.document.theForm.Content.value+String(window.event.keyCode);
	}
}//函数EnterChange(eventobject)代码段结束