Here is another problem that I think is related to quotes. Here, the receiving page only gets the first part of the value (up to the first space, and the rest is truncated). I had a similar problem recently, and it turned out that I was missing some quotes. But I can't find it here. Help again, por favor?
Code:
<%
	response.write "<input type=" & chr(13) & "hidden" & chr(13)
	response.write " name=" & chr(13) & "facility" & chr(13)
	response.write " value=" 
	If IsAdmin = True Then
		response.write chr(13) & cmbFacility & chr(13)
	Else
		response.write chr(13) & Facility & chr(13)
	End If

	response.write ">"
%>