//公告弹出          
<!-- HIDE            
function Affiche(chatwindow) { var MainWindow = window.open (chatwindow,            
"_blank","toolbar=no,location=no,menubar=no,scrollbars=yes,width=400,height=450,resizeable=no,status=no");}
            
// STOP HIDING FROM OTHER BROWSERS -->     

//评论弹出          
<!-- HIDE            
function Comment(chatwindow) { var MainWindow = window.open (chatwindow,            
"_blank","toolbar=no,location=no,menubar=no,scrollbars=no,width=500,height=250,top=150,left=150,resizeable=no,status=no");}
            
// STOP HIDING FROM OTHER BROWSERS -->    

//表情图标 A_guest.asp
function showemotion(){
if(emotion.style.display=='none'){
emotion.style.display='';
}else{
emotion.style.display='none';
}
}
function insertsmilie(smilieface){
if(document.form.notContent.createtextrange){
document.form.notContent.focus();
document.selection.createrange().duplicate().text=smilieface;
}else{
document.form.notContent.value+=smilieface;
}
}

//计算评论字数
function storeCaret(cursorPosition) {
	if (cursorPosition.createTextRange) cursorPosition.caretPos = document.selection.createRange().duplicate();
}