<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<xsl:template match="/">
		<xsl:output indent="no"/>

		<!-- Start to Copy -->
		<xsl:copy>
			<xsl:copy-of select="@*"/>
			<xsl:apply-templates mode="copy"/>
		</xsl:copy>
	</xsl:template>



	<xsl:template match="@*|node()" mode="copy">
		<xsl:choose>

			<!-- Tab -->
			<xsl:when test="string(name(.))='Tab'">TAB WAS PRESSED HERE</xsl:when>

			<!-- Standard Copy -->
			<xsl:otherwise>
				<xsl:copy>
					<xsl:copy-of select="@*"/>
					<xsl:apply-templates mode="copy"/>
				</xsl:copy>
			</xsl:otherwise>
		</xsl:choose>

	</xsl:template>
</xsl:stylesheet><!-- Stylus Studio meta-information - (c) 2004-2006. Progress Software Corporation. All rights reserved.
<metaInformation>
<scenarios ><scenario default="yes" name="Scenario1" userelativepaths="yes" externalpreview="no" url="test.xml" htmlbaseurl="" outputurl="" processortype="custom" useresolver="no" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="java Xi30Xslt %1 %2 %3" additionalpath="" additionalclasspath="${classpath};C:\Program Files\Stylus Studio 2007 XML Enterprise Suite\bin\xi30xslt.jar;\\Itg01\all\Appl_Dev\Swarovski_Konzept_&amp;_Design\Projekte\XI Setup\EDI Migration\Tools\SwaTools\SwaTools.jar;\\Itg01\all\Appl_Dev\Swarovski_Konzept_&amp;_Design\Projekte\XI Setup\EDI Migration\Tools\SeeTools\SeeFunctionsXI.jar;\\Itg01\all\Appl_Dev\Swarovski_Konzept_&amp;_Design\Projekte\XI Setup\EDI Migration\Tools\SeeTools\SeeXICommonCollection.jar" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext="" validateoutput="no" validator="internal" customvalidator=""/><scenario default="no" name="Scenario2" userelativepaths="yes" externalpreview="no" url="" htmlbaseurl="" outputurl="" processortype="custom" useresolver="no" profilemode="0" profiledepth="" profilelength="" urlprofilexml="" commandline="java Xi30Xslt %1 %2 %3" additionalpath="" additionalclasspath="${classpath};C:\Program Files\Stylus Studio 2007 XML Enterprise Suite\bin\xi30xslt.jar;\\Itg01\all\Appl_Dev\Swarovski_Konzept_&amp;_Design\Projekte\XI Setup\EDI Migration\Tools\SwaTools\SwaTools.jar;\\Itg01\all\Appl_Dev\Swarovski_Konzept_&amp;_Design\Projekte\XI Setup\EDI Migration\Tools\SeeTools\SeeFunctionsXI.jar;\\Itg01\all\Appl_Dev\Swarovski_Konzept_&amp;_Design\Projekte\XI Setup\EDI Migration\Tools\SeeTools\SeeXICommonCollection.jar" postprocessortype="none" postprocesscommandline="" postprocessadditionalpath="" postprocessgeneratedext="" validateoutput="no" validator="internal" customvalidator=""/></scenarios><MapperMetaTag><MapperInfo srcSchemaPathIsRelative="yes" srcSchemaInterpretAsXML="no" destSchemaPath="" destSchemaRoot="" destSchemaPathIsRelative="yes" destSchemaInterpretAsXML="no"/><MapperBlockPosition></MapperBlockPosition><TemplateContext></TemplateContext><MapperFilter side="source"></MapperFilter></MapperMetaTag>
</metaInformation>
-->