<%
OPTION EXPLICIT

'Ensure a new copy of the page every time
RESPONSE.EXPIRES	= -1
RESPONSE.BUFFER	= TRUE

'Ensure our page is correctly interpreted as XML
RESPONSE.CLEAR
RESPONSE.CONTENTTYPE	= "text/xml"
RESPONSE.CHARSET		= "UTF-8"

'***************************************
' Copyright (c) 2005, 2006, 2007 WebFirm
' http://www.webfirm.com.au
' Ph: 1300 304 779
'
' File:				sitemap.xml.asp
' Author:			Keegan Rowe
' Date Created:	07/05/2007
' Last Modified:	17/05/2007
'
' Purpose:
'	This page will display a dynamic 
'	sitemap xml document.
'***************************************
%><?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<url>
	  <loc>http://www.domainshadesails.com.au/</loc>
	</url>
	<url>
	  <loc>http://www.domainshadesails.com.au/profile.shtml</loc>
	</url>
  <url>
	  <loc>http://www.domainshadesails.com.au/gallery.shtml</loc>
	</url>
  <url>
	  <loc>http://www.domainshadesails.com.au/contact.shtml</loc>
	</url>
</urlset>