All changes are made in post.asp
This code starts on line #71:
select case strSelectSize
case "1"
intCols = 45
intRows = 6
case "2"
intCols = 80
intRows = 12
case "3"
intCols = 90
intRows = 12
case "4"
intCols = 130
intRows = 15
case else
intCols = 80
intRows = 12
end select
change case else to this:
case else
intCols = 45
intRows = 6
Then starting on line #550
change these lines:
<option value="1" <% if strSelectSize = "1" then Response.Write("SELECTED") %>>640 x 480</option>
<option value="2" <% if strSelectSize = "2" or strSelectSize = "" then Response.Write("SELECTED") %>>800 x 600</option>
to this:
<option value="1" <% if strSelectSize = "1" or strSelectSize = "" then Response.Write("SELECTED") %>>640 x 480</option>
<option value="2" <% if strSelectSize = "2" then Response.Write("SELECTED") %>>800 x 600</option>