
var SdXslData = {};		// public  global identifiers
var $_XslData = {};		// private global identifiers

// ---------------------------------------------------------------------------

SdXslData.getXslAsHardCodedString = function (xslFileName)
{
	if (xslFileName && xslFileName.indexOf("/Js/") != 0)
	{
		xslFileName = "/Js" + xslFileName;
	}
//	SdCommon.lnk("unable to load hardcoded: ", xslFileName);
	return null;	// $_XslData[xslFileName];
}

// ---------------------------------------------------------------------------
// Fast Loading XSL data
// ---------------------------------------------------------------------------

// $_XslData['/Js/syndetics-item-summary.xsl'] =
 
//   '<?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="/">'
// + '  <xsl:if test="USMARC">'
// + '    <div class="enrichheader">'
// + '      A Peek Inside'
// + '    </div>'
// + '    <p>'
// + '      <div class="summary">'
// + '        <xsl:for-each select="USMARC/VarFlds/VarDFlds/*/Fld520">'
// + '          <xsl:value-of select="substring(a,1,500)"/>'
// + '        </xsl:for-each>'
// + '        ...'
// + '      </div>'
// + '      <span class="enrichtagline">Distributed by Syndetic Solutions, Inc.</span>'
// + '    </p>'
// + '  </xsl:if>'
// + '</xsl:template>'

// + '</xsl:stylesheet>';

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

