document.write("");document.write(" 快速注册");document.write("
| ");document.write("");
function commentcheck()
{
if(document.form1.content.value == "")
{
alert("评论内容为空!");
document.form1.content.focus();
return false;
}
}
function changename(){
if(document.form1.niming.checked==true){
document.form1.username.disabled=false;
document.form1.username.value='';
document.getElementById("indexhidden").style.display="none";
document.form1.index.value='';
}else{
document.form1.username.disabled=true;
document.form1.username.value='';
document.getElementById("indexhidden").style.display="";
document.form1.index.value='http://.blog.51cto.com';
}
}
|