<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document SYSTEM "http://commons.omniupdate.com/dtd/standard.dtd"> 
<!-- 
AZ Include File							
-->
<xsl:stylesheet version="3.0" 
				xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
				xmlns:xs="http://www.w3.org/2001/XMLSchema" 
				xmlns:ou="http://omniupdate.com/XSL/Variables"
				xmlns:fn="http://omniupdate.com/XSL/Functions" 
				xmlns:ouc="http://omniupdate.com/XSL/Variables"
				exclude-result-prefixes="ou xsl xs fn ouc">

<xsl:import href="vars.xsl"/>		
<xsl:import href="functions.xsl"/>

<xsl:output method="html" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>


		<xsl:template match="/">
		
		<xsl:choose>
			<xsl:when test="$ou:action = 'pub' and $ou:publishBlankPages = 'yes'">
				<div><xsl:comment> com.omniupdate.ob </xsl:comment><xsl:comment> /com.omniupdate.ob </xsl:comment></div>
			</xsl:when>
			<xsl:otherwise>
		
		<xsl:variable name="disclaimer" select="ou:pcfparam('disclaimer')"/>
	
			<xsl:if test="string-length($disclaimer)>0">
			<p style="font-style:italic">
				<xsl:copy-of select="$disclaimer"/>
			</p>
			</xsl:if>
			</xsl:otherwise>
			</xsl:choose>
		</xsl:template>

</xsl:stylesheet>
