% Dim ProvinceFull
Province = request.querystring("province")
if Province = "ON" then
ProvinceFull = "Ontario"
elseif Province = "MB" then
ProvinceFull = "Manitoba"
elseif Province = "SK" then
ProvinceFull = "Saskatchewan"
elseif Province = "AB" then
ProvinceFull = "Alberta"
elseif Province = "BC" then
ProvinceFull = "British Columbia"
elseif Province = "QC" then
ProvinceFull = "Quebec"
elseif Province = "NB" then
ProvinceFull = "New Brunswick"
elseif Province = "NS" then
ProvinceFull = "Nova Scotia"
elseif Province = "PE" then
ProvinceFull = "Prince Edward Island"
elseif Province = "NF" then
ProvinceFull = "Newfoundland"
endif %>