var fsize=12;
function zoomin(i) 
{ 

  	newZoom= parseInt(test123.style.zoom)+5+'%';
	test123.style.zoom =newZoom;
}
function zoomout(i) 
{ 
	newZoom= parseInt(test123.style.zoom)-5;
	if(newZoom<10)
	{
		newZoom=10;
		alert("再小就看不见了！");
	}
	test123.style.zoom =newZoom +'%';
}
function zoomin2(i) 
{ 
  fsize=fsize+i;
  var tmpstr=fsize+"px";
  test123.style.fontSize=tmpstr;
}
function zoomout2(i) 
{ 
  if(fsize<4) return;
  fsize=fsize-i;
  var tmpstr=fsize+"px";
  test123.style.fontSize=tmpstr;
}

function zoom2(i) 
{ 
  fsize=12;
  var tmpstr=fsize+"px";
  test123.style.fontSize=tmpstr;
}
function zoom(i) 
{ 
	test123.style.zoom = '100%';
}