<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" 
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
	xmlns:msxsl="urn:schemas-microsoft-com:xslt"
	xmlns:util="utilities:date-functions:now"
	exclude-result-prefixes="util msxsl">
<xsl:output method="xml" indent="yes"/>

<msxsl:script implements-prefix="util" language="JScript">
<![CDATA[ 
function getDate(){ 
   var s = "";
   var d = new Date();
   s += (d.getMonth() + 1) + "/";
   s += d.getDate() + "/";
   s += d.getYear();
   return s.toString();
}
]]>
</msxsl:script>

<xsl:template match="/">
	<TodayIs><xsl:value-of select="util:getDate()"/></TodayIs>
</xsl:template>
</xsl:stylesheet>
<!-- Stylus Studio meta-information - (c) 2004-2007. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="books.xml" userelativepaths="yes" externalpreview="no" url="..\Program Files\Stylus Studio 2007 XML Enterprise Suite Release 2\examples\simpleMappings\books.xml" htmlbaseurl="" outputurl="" processortype="msxml4" useresolver="no" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="" additionalpath="" additionalclasspath="" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext="" validateoutput="no" validator="internal" customvalidator=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no" ><SourceSchema srcSchemaPath="..\Program Files\Stylus Studio 2007 XML Enterprise Suite Release 2\examples\simpleMappings\books.xml" srcSchemaRoot="books" AssociatedInstance="" loaderFunction="document" loaderFunctionUsesURI="no"/></MapperInfo><MapperBlockPosition><template match="/"><block path="TodayIs/xsl:value-of" x="239" y="18"/></template></MapperBlockPosition><TemplateContext></TemplateContext><MapperFilter side="source"></MapperFilter></MapperMetaTag>
</metaInformation>
-->