function checkcharacter(character)
{
var x=character
x=x.charCodeAt(0)
if ((x>=65 && x<=90) || (x>=97 && x<=122))
{
return true
}
return false
}


function checkpostal(obj)
{
postalobj=obj

if (postalobj.value.length>0)
{
postalobj.value=postalobj.value.replace(/ /g,"")
x=postalobj.value

			if (x.length == 5)
			{
				if (! isNaN(x) )
				{
				return false
				}
			}
	}

return true

}

