function changeimage()
{
  document.myform.GuestImages.value=document.myform.Image.value;
  document.myform.showimages.src='/GuestBook/Images/Face/'+document.myform.Image.value+'.gif';
}
function guestpreview()
{
  document.preview.content.value=document.myform.GuestContent.value;
  var popupWin = window.open('GuestPreview.asp', 'GuestPreview', 'scrollbars=yes,width=620,height=230');
  document.preview.submit();
}
function CheckForm()
{
    if(document.myform.GuestName.value==''){
      alert('姓名不能为空！');
      document.myform.GuestName.focus();
      return(false) ;
    }
   var IframeContent=document.getElementById("editor").contentWindow;
   IframeContent.HtmlEdit.focus();
   IframeContent.HtmlEdit.document.execCommand('selectAll');
   IframeContent.HtmlEdit.document.execCommand('copy');
  var CurrentMode=editor.CurrentMode;
  if (CurrentMode==0){
       document.myform.GuestContent.value=editor.HtmlEdit.document.body.innerHTML; 
  }
  else if(CurrentMode==1){
       document.myform.GuestContent.value=editor.HtmlEdit.document.body.innerText;
  }
  if(document.myform.GuestContent.value==''){
    alert('内容不能为空！');
    editor.HtmlEdit.focus();
    return(false);
  }
  if(document.myform.GuestContent.value.length>65536){
    alert('内容不能超过64K！');
    editor.HtmlEdit.focus();
    return(false);
  }
}