//字体大小
function fontZoom(size)
{
  document.getElementById('fontzoom').style.fontSize=size+'px'
 }
//字体颜色
function color(vvar)
  {
  document.getElementById('fontzoom').style.color=vvar; 
}
//弹出窗口
function popboard(url,winname,winwidth,winheight)
{
   window.open (url,winname, 'width='+winwidth+',height='+winheight+',toolbar=no, menubar=no, scrollbars=auto, resizable=no, location=no, status=no')
}
//管理中用
function showdiv(div_id) 
{	
  document.all.item("div00").style.display = "none";
  document.all.item("div01").style.display = "none";
  document.all.item("div02").style.display = "none";
  document.all.item("div03").style.display = "none";
  document.all.item("div04").style.display = "none";
  document.all.item("div05").style.display = "none";
  document.all.item("div06").style.display = "none";
  document.all.item("div07").style.display = "none";
  document.all.item("div"+div_id).style.display = "block";
}
