function checkCapital(string)
local capitals = {196,214,220,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90}
local c = true
for i = 1,string:len() do
local l = string:byte(i)
if not isInArray(capitals,l) then
c = false
end
end
return c
end