var curfontsize=10; 
var curlineheight=18; 
function fontZoomA(){ 
if(curfontsize>8){ 
document.getElementById('fontzoom').style.fontSize=(--curfontsize)+'pt'; 
document.getElementById('fontzoom').style.lineHeight=(--curlineheight)+'pt'; 
}}document.write("");
function fontZoomB(){ 
if(curfontsize<64){ 
document.getElementById('fontzoom').style.fontSize=(++curfontsize)+'pt'; 
document.getElementById('fontzoom').style.lineHeight=(++curlineheight)+'pt'; 
} 
}
function Chcekfill()
{

if (document.form1.Name.value=="")
{  alert("请输入你的用户名！");
   document.form1.Name.focus();
   return false;
 }
 if (document.form1.Content.value=="")
{
   alert("请输入评论内容！");
   document.form1.Content.focus();
   return false;
}
   return true;

}


