<%
Option Explicit
Dim StringToChop
StringToChop = "Nowy Meksyk"
Response.Write Mid(StringToChop, 6, 4)
Response.Write Mid(StringToChop, 6)
%> 
