function PutFace(NameValue)
{
	if(document.getElementById('HighEdit').style.display!='block')
	{
		document.getElementById('txtdetail').value+="<img src='http://bbs.xzjiayuan.com/Face/"+NameValue+".gif' />";
		subChang();
	}
	else
	{
		GetStrPar("<img src=http://bbs.xzjiayuan.com/Face/"+NameValue+".gif />")
	}
}

function GetStrPar(GetPar)
{
	var oEditor = FCKeditorAPI.GetInstance("textdetail");
	if (oEditor.EditMode==FCK_EDITMODE_WYSIWYG)
		oEditor.InsertHtml(GetPar);
	else
		return false;
}

function subOk()//提交时调用
{
	var oEditor = FCKeditorAPI.GetInstance("textdetail");
	obj=document.getElementById('txtdetail');
	if(document.getElementById('HighEdit').style.display!='block')
	{
		document.getElementById('SimpleEdit').style.display='none';
		document.getElementById('HighEdit').style.display='block';
		oEditor.SetHTML(obj.value);
	}
	obj.value=oEditor.GetHTML(true);
}

function subChang()//转用高级编辑器
{
	var oEditor = FCKeditorAPI.GetInstance("textdetail");
	document.getElementById('SimpleEdit').style.display='none';
	document.getElementById('HighEdit').style.display='block';
	oEditor.SetHTML(document.getElementById('txtdetail').value);
}

function GetPicStr(GetPar)
{
	var oEditor = FCKeditorAPI.GetInstance("textdetail");
	if(document.getElementById('HighEdit').style.display!='block')
	{
		document.getElementById('txtdetail').value+=GetPar;
		document.getElementById('SimpleEdit').style.display='none';
		document.getElementById('HighEdit').style.display='block';
		oEditor.SetHTML(document.getElementById('txtdetail').value);
	}
	else
	{
		if (oEditor.EditMode==FCK_EDITMODE_WYSIWYG)
			oEditor.InsertHtml(GetPar);
		else
			return false;
	}
}

var Isdocument=1;

function insertform_OnSubmit()
{
	if (document.insertform.txtdetail.value=="")
	{
		alert("回复内容输入框不能为空");
		return false;
	}
	if (document.insertform.GetCode.value=="")
	{
		alert("验证码不能为空");
		document.insertform.GetCode.focus();
		return false;
	}
	return true;	
}

function GoTo(Par)
{
	PageNum=document.getElementById("GoToID").value;
	if(PageNum!=0||PageNum!="")
		if(PageNum!="0")
			window.location.href="Theme-"+Par+"-"+PageNum+".html"
}

function BBSKeyDown(e)
{
	if((event.keyCode==13&&event.ctrlKey) || (event.keyCode==83&&event.altKey))		//如果同时按下"Ctrl"键+"Enter"键
	{
		insertform.cmdOk.disabled=true;
		if (document.insertform.txtdetail.value=="")
		{
			alert("回复内容输入框不能为空");
			insertform.cmdOk.disabled=false;
			return false;
		}
		if(Isdocument==1)
		{
			Isdocument=0;
			document.insertform.submit();
		}
	}
}
document.onkeydown=BBSKeyDown; 					//用document.onkeydown(键盘按下)是调用函数BBSKeyDown