﻿	function isnum(vnum)
		if isnumeric(vnum) then
			isnum = "true"
		else
			isnum = "false"
		end if
	end function

