<?
	//
	// Génération du fichier sitemap.xml
	//
	include ("common/all.php") ; 
	
	header('Content-type: text/xml') ;
	
	print ("<"."?".'xml version="1.0" encoding="UTF-8"'."?".">") ;
	print ("\n") ;
	print ("<urlset xmlns=\"http://www.google.com/schemas/sitemap/0.84\">") ;
	print ("\n") ;
	
	if ($_GENERAL['referencement']) {
		include ("sitemap/sitemap.php") ;
	}
	print ("</urlset>\n") ;

?>