<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>

<xsl:element name="script">
   <xsl:attribute name="language">javascript</xsl:attribute>
   function openwin(url) {
   window.open(url,"help","width=500,height=600,toolbar=no,menubar=no,scrollbars=1")
} 
</xsl:element>



<body>

<style>


    a:link	    {   color: #2D559F; 
		border-bottom: 1px dotted #2D559F;
		text-decoration: none; 
		font: 12px verdana, lucida, arial, helvetica, sans-serif;}  

    a:visited	 {   border-bottom: 1px dotted #2D559F; 
		color:  #2D559F;
		text-decoration: none;
		 font: 12px verdana, lucida, arial, helvetica, sans-serif;}  

    a:active	  {   text-decoration: none; 
		color: #808080;
		text-decoration: none;
		font: 12px verdana, lucida, arial, helvetica, sans-serif;}  

	a:hover	   {   border-bottom: none; 
			color:  #808080;
			text-decoration: none;
			font: 12px verdana, lucida, arial, helvetica, sans-serif;} 
				
    a.NoBorder:link, a.NoBorder:visited, a.NoBorder:hover 
			  {   border: 0px;} 
			  
    .highlight	 {  background-color: #D2DCF2;
			border-bottom: 1px dotted #D2DCF2;
			border-top: 1px dotted #D2DCF2;
			border-left: 4px dotted #D2DCF2;
			border-right: 4px dotted #D2DCF2; 
			}
    .ingress	  { 	font-size: 12px;
			    	font-weight: normal;
				margin-left: 16px;}
				
    a.ingressLink:link, a.ingressLink:visited, a.ingressLink:hover, a.ingressLink:link
			  {   border: 0px;
				font-size: 12px;
			    	font-weight: normal;
				text-decoration: none;} 
   TD, select, P, A, LEGEND, BODY,
    H1, H2, H3, H4, H5, H6, TH,
    input, textarea, legend    
  				{   font-family: verdana, arial;
				color: #000000;
				font-size:12px;}
</style>



<table border="0" cellpadding="0" cellspacing="0" width="300"  >


 <tr height="18"  >
  <td style="font-size:10.0pt;"><center><img src="img/title.JPG"/><b>Help Topics</b></center></td>
  <td></td>
 </tr>

<xsl:for-each select="helpinfor/Link">
	
	<xsl:if test="title = '-'">
	<tr height="18"  >
		<td height="18" style="font-size:8.0pt;">
<hr style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; 
padding-top: 1px; padding-bottom: 1px" size="1" color="#C0C0C0"/>
</td>
	</tr>
	</xsl:if>

	<xsl:if test="title!='-'">
		<tr height="18"  >
		<td height="18" style="font-size:8.0pt;">
		<img border="0" src="img/HIcon.GIF"/>
		<xsl:element name="a">
		<xsl:attribute name="href">
			javascript:openwin('<xsl:value-of select="linkaddress"/>');
		</xsl:attribute>

		
		<xsl:value-of select="title"/>
		</xsl:element>
		</td>
		</tr>
	</xsl:if>


</xsl:for-each> 



</table>

</body>

</html>

</xsl:template>
</xsl:stylesheet>