<?xml version='1.0'?>
<!--Copyright 1999-2000 Intuit Inc. All rights reserved. Unauthorized duplication is a violation of applicable law.-->

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template><xsl:apply-templates/></xsl:template>

<xsl:template match="table/rows/row[groupid]">
<TR><TD>
<TABLE border="0" cellpadding="1" cellspacing="0">
<TR><TD align="center" colspan="4">
</TD></TR>
<xsl:choose>
<xsl:when test="details/detail">
<xsl:for-each select="details/detail">
 <TR>
	<xsl:attribute name="class">row</xsl:attribute>
	<xsl:attribute name="onmouseover">rolloverRow.className='row';this.className = 'rowHighlight';rolloverRow = this;</xsl:attribute>
	<xsl:attribute name="onmouseout">rolloverRow.className = 'row';rolloverRow = '0';</xsl:attribute>
	<xsl:attribute name="oncontextmenu">rolloverRow.className='row';this.className = 'rowHighlight';rolloverRow = this;showContextMenu(<xsl:value-of select="id"/>);return false;</xsl:attribute>
	<xsl:attribute name="onclick">rolloverRow.className='row';this.className = 'rowHighlight';rolloverRow = this;clickRow();</xsl:attribute>
	<TD width="10%">
		<xsl:attribute name="task"><xsl:value-of select="actions/action[@type='default']/task"/></xsl:attribute><BR/>
	</TD>
	<TD width="10%">
		<xsl:attribute name="task"><xsl:value-of select="actions/action[@type='default']/task"/></xsl:attribute>
		<LI></LI>
	</TD>
	<TD>
		<xsl:attribute name="task"><xsl:value-of select="actions/action[@type='default']/task"/></xsl:attribute>
		<xsl:value-of select="description"/>
	</TD>
	<TD width="10%">
		<xsl:attribute name="task"><xsl:value-of select="actions/action[@type='default']/task"/></xsl:attribute><BR/>
	</TD>
 </TR>
	 <DIV>
	 <xsl:attribute name="class">menus</xsl:attribute>
	 <xsl:attribute name="id"><xsl:value-of select="id"/></xsl:attribute>
	 <xsl:attribute name="onmouseover">toggleContextMenu()</xsl:attribute>
	 <xsl:attribute name="onmouseout">toggleContextMenu()</xsl:attribute>
	 <xsl:attribute name="onclick">clickContextMenu(<xsl:value-of select="id"/>)</xsl:attribute>
	 <xsl:attribute name="oncontextmenu">rtClickContextMenu(<xsl:value-of select="id"/>);return false;</xsl:attribute>
	 <xsl:attribute name="style">display: none;</xsl:attribute>
	 <xsl:for-each select="actions/action">
		<DIV>
		<xsl:attribute name="class">menuItem</xsl:attribute>
		<xsl:attribute name="task"><xsl:value-of select="task"/></xsl:attribute>
		<xsl:value-of select="ui"/>
		</DIV>
	</xsl:for-each>
	</DIV>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
	<TR align="center"><TD><B>Currently, there are no reports in this memorized report group.</B></TD></TR>
</xsl:otherwise>
</xsl:choose>
<TR><TD align="center" colspan="4">
	<BR/>
		<img name="rptbtn" src="" height="21" width="135" border="0" onmousedown="toggleButton('on','rptbtn',reptButton);" onmouseup="toggleButton('off','rptbtn',reptButton);" onmouseout="toggleButton('off','rptbtn',reptButton);">
		<xsl:attribute name="task"><xsl:value-of select="actions/action[@ui='button']/task"/></xsl:attribute>
		<xsl:attribute name="onclick">clickRow();</xsl:attribute>
		</img>
	<BR/>
</TD></TR>
</TABLE>
</TD></TR>
</xsl:template>

</xsl:stylesheet>

