This "$PAGE_SCOPE[title]" will display the title of the page i want to display different headlines based on the title so i am trying to get the page title in a variable, this variable is displaying the title in the paragraph tag but it's not working in the when loop.
<xsl:variable name="PageTitle" select="'$PAGE_SCOPE[title]'" />
<xsl:variable name="test"><xsl:value-of select="$PageTitle" /></xsl:variable>
<p><xsl:value-of select="$test" /></p>
<xsl:choose>
<xsl:when test="$test='RAQ'">
<h1 class="h3"><strong>.....</strong></h1>
</xsl:when>
<xsl:otherwise>
<h1 class="h3"><strong>Error</strong></h1>
</xsl:otherwise>
</xsl:choose>
any pointers would be helpful.