<%response.ContentType="text/XML"%><?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">

<channel>
  <atom:link href="http://www.downtownla.com/downtownSpecialsRSS.xml" rel="self" type="application/rss+xml" />
  <title>downtownla.com Downtown Specials</title>
  <link>http://downtownla.com</link>
  <description>Special offers from downtown LA businesses</description>
  	<%
		Set rsSpecials = objSpecials.getDowntownSpecials()
		If Not rsSpecials.EOF Then
			Do While Not rsSpecials.EOF
			
				strFormattedDetails = Server.HTMLEncode(rsSpecials("Details"))
				strFormattedDetails = Replace(strFormattedDetails, vbCrLf & vbCrLf, "&lt;BR&gt;&lt;BR&gt;")
				strFormattedDetails = Replace(strFormattedDetails, vbCrLf, "&lt;BR&gt;")
	%>
  <item>
    <title><%=Server.HTMLEncode(rsSpecials("Headline"))%></title>
	<% If rsSpecials("OfferURL") <> "" Then %>
    <link><%=Server.HTMLEncode(rsSpecials("OfferURL"))%></link>
	<% End If %>
	<guid>http://downtownla.com/3_01_downtownSpecials.asp?offerID=<%=rsSpecials("DowntownSpecialID")%></guid>
    <description>
		<%=Server.HTMLEncode(rsSpecials("Location"))%>&lt;BR&gt;
		<%=Server.HTMLEncode(rsSpecials("Expiration"))%>&lt;BR&gt;
		&lt;BR&gt;
		<%=strFormattedDetails%>
	</description>
  </item>
  <%
  			rsSpecials.MoveNext
		Loop
	End If
  %>
</channel>

</rss>