set ScreenN to char 2 to the number of chars in ScreenN of ScreenN
next repeat
end if
if char 1 of PassW = " " then
set PassW to char 2 to the number of chars in PassW of PassW
next repeat
end if
if ScreenN contains " " then
set offs to offset(" ", ScreenN)
set ScreenN to char 1 to offs - 1 of ScreenN & char offs + 1 to the number of chars in ScreenN of ScreenN
end if
if PassW contains " " then
set offs to offset(" ", PassW)
set PassW to char 1 to offs - 1 of PassW & char offs + 1 to the number of chars in PassW of PassW
end if
end repeat
return (the number of chars in ScreenN >= 3) and (the number of chars in ScreenN <= 10) and (the number of chars in PassW >= 4) and (the number of chars in PassW <= 8)