document.write("');
document.write('
');
function $a(id) {
return document.getElementById(id);
}
function CommentSubmit(){
var link = "http://pl.comicyu.com/index.php/Comment/Add/a_id/" + infoid + "/type/" + mode;
if ($a("comment_form").comment_content.value == '') {
alert('请输入评论内容');
return false;
}
$a("comment_form").url.value = encodeURI(window.location);
$a("comment_form").title.value = title;
$a("comment_form").a_id.value = infoid;
$a("comment_form").type.value = mode;
$a("comment_form").action = link;
$a("comment_form").submit();
return false;
}
function showNiming(obj) {
var niming = document.getElementById('niming');
var tongxingzheng = document.getElementById('tongxingzheng');
if (obj.checked) {
tongxingzheng.style.display = 'none';
niming.style.display = '';
} else {
tongxingzheng.style.display = '';
niming.style.display = 'none';
}
}