% mode = Request.QueryString("mode") 'values = 1 (thumbnails) | 2 (columns) If mode = "" Then mode = 1 'values = new | used | special | all showCondition = "all" 'values = 0 (all) | 1 (motorized) | 2 (towable) If Request.QueryString("classification") = "" Then 'edit this value if not specified in url classification = 0 Else classification = Request.QueryString("classification") End If 'values = "0" (not on consignment) | "1" (on consignment) | "" (n/a) If Request.QueryString("consignment") = "" Then 'edit this value if not specified in url consignment = "" Else consignment = Request.QueryString("consignment") End If 'values = 2 (Class A) | 3 (Class C) | 4 (5th Wheels) | 5 (Travel Trailer) | 6 (Popups) | 7 (Truck Campers) | 8 (Misc) 'values = 9 (ClassB) | 10 (Bus Conversion) | 11 (Park Model) | 12 (Boat) | 14 (Sport Utility Trailer) If Request.QueryString("type_id") = "" Then 'edit this value if not specified in url typeID = "" Else typeID = Request.QueryString("type_id") End If 'all borderColor = "#000000" headerColor = "#000000" headerTextColor = "#ffffff" topColor = "#ffffff" topTextColor = "#000000" 'mode 1 only highLightColor = "#eeeeee" highLightUnitColor = "" highLightPriceColor = "#000000" backgroundColor = "#ffffff" backgroundTextColor = "" 'mode 2 only subheaderColor = "#cc6666" subheaderTextColor = "#ffffff" rowColor1 = "#ffffff" rowColor2 = "#eeeeee" textColor = "" %>