function SetNavStatus()
{
if (document.all.NavType.value==0)
{
document.all.NavWord.style.display="";
document.all.NavPic.style.display="none";
}
else
{
document.all.NavWord.style.display="none";
document.all.NavPic.style.display="";}
}
function InsertScriptFun(Obj)
{ if (document.myform.LabelName.value=='')
{
alert('请输入标签名称');
document.myform.LabelName.focus();
return false
}
var TypeFlag;
var ChannelID=document.myform.ChannelID.value;
var OpenType='"'+document.myform.OpenType.value+'"';
var Nav,NavType=document.myform.NavType.value;
var SplitPic=document.myform.SplitPic.value;
var ColNumber=document.myform.ColNumber.value;
var TitleCss='"'+document.myform.TitleCss.value+'"';
for (var i=0;i var KM = document.myform.TypeFlag[i];
if (KM.checked==true)
TypeFlag = KM.value
}
if (NavType==0) Nav='"'+document.myform.TxtNavi.value+'"'
else Nav='"'+document.myform.NaviPic.value+'"';
document.myform.LabelContent.value= '{$GetArticleNavigation('+ChannelID+','+TypeFlag+','+NavType+','+Nav+','+SplitPic+','+ColNumber+','+OpenType+','+TitleCss+')}';
document.myform.submit();
}