How to transform Xml to html which contains javascript

I know it is useful to use xsl to do simple transformation, but since I need to pass some values into the javascript's functions in html, just don't know how to do that. Any advice is apprciated!!
[212 byte] By [deer2000] at [2007-9-26 5:37:36]
# 1
As far as I know, you can do it using xsl trasformations.
wookash at 2007-7-1 13:49:28 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
but how can I use xsl to pass some xml's value into the javascript function in resulted html?Thank you.
deer2000 at 2007-7-1 13:49:28 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3
<xsl:param name="member"/>this declares a parameter in XSLT. As part of the TransformerFactory you can invoke a setParameter method. Lenin
Lenin_tony at 2007-7-1 13:49:28 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 4
try<xsl:element name="script"><xsl:attribute name="language">javascript</xsl:attribute>your regular javascript ... take care about the special characters</xsl:element>s_Scorpius@yahoo
samitu at 2007-7-1 13:49:28 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...