<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xslc="http://xslcomponents.org/TR/WD-xslc">
<xsl:import href="../../xslc.xsl"/>
<xsl:import href="../../Common.xsl"/>
<xsl:template match="/">
<html>
<head>
<title>
<xsl:value-of select="/document/Locales/Default"/>
</title>
</head>
<xsl:variable name="MainAction">
<xsl:choose>
<xsl:when test="/document/Params/MainAction != ''">
<xsl:value-of select="/document/Params/MainAction"/>
</xsl:when>
<xsl:when test="/document/XMLC_Profile/XMLC_MainAction != ''">
<xsl:value-of select="/document/XMLC_Profile/XMLC_MainAction"/>
</xsl:when>
<xsl:otherwise>FormPortal</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="MenuWidth">
<xsl:choose>
<xsl:when test="/document/XMLC_Profile/XMLC_MenuWidth">
<xsl:value-of select="/document/XMLC_Profile/XMLC_MenuWidth"/>
</xsl:when>
<xsl:otherwise>250</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<frameset cols="{$MenuWidth},10,*" frameborder="0" framespacing="0" id="Default" name="Default" title="Default">
<frame border="0" frameborder="0" id="Menu" name="Menu" src="{/document/Aliases/XDBServerManagerDLL}XDB_Menu" scrolling="auto"/>
<frame border="0" frameborder="0" id="Splitter" name="Splitter" scrolling="no" noresize="" src="{/document/Aliases/XDBServerManagerDLL}XDB_Splitter"/>
<frame border="0" frameborder="0" id="Main" name="Main" scrolling="yes" noresize="" src="{/document/Aliases/XDBServerManagerDLL}{$MainAction}"/>
<noframe>
<body>
<xsl:value-of select="/document/Locales/UpgradeYourBrowser"/>
</body>
</noframe>
</frameset>
</html>
</xsl:template>
</xsl:stylesheet>
