// JavaScript Document
function isNumber(oNum)
{
  if(oNum.match(/^[1-9]\d*$/)==null)
  { 
    alert("面积为非数字类型，请重新输入");
  }
}