document.write('<div class="php" style="font-family: monospace;"><br />');
document.write('<br />');
document.write('<span style="color: #000000; font-weight: bold;">&lt;?php</span><br />');
document.write('<span style="color: #808080; font-style: italic;">/**************************************************************************************<br />');
document.write('&nbsp;* Class: Pager<br />');
document.write('&nbsp;* Methods:<br />');
document.write('&nbsp;*&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;findStart<br />');
document.write('&nbsp;*&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;findPages<br />');
document.write('&nbsp;*&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;pageList<br />');
document.write('&nbsp;*&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nextPrev<br />');
document.write('&nbsp;**************************************************************************************/</span><br />');
document.write('&nbsp;<span style="color: #000000; font-weight: bold;">class</span> Pager<br />');
document.write('&nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; <span style="color: #808080; font-style: italic;">/***********************************************************************************<br />');
document.write('&nbsp; &nbsp;* int findStart (int limit)<br />');
document.write('&nbsp; &nbsp;* Returns the start offset based on $_GET[\'page\'] and $limit<br />');
document.write('&nbsp; &nbsp;***********************************************************************************/</span><br />');
document.write('&nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">function</span> findStart<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$limit</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>!<a target="_blank"&nbsp; href="http://www.php.net/isset"><span style="color: #000066;">isset</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$_GET</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'page\'</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span> || <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$_GET</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'page\'</span><span style="color: #66cc66;">&#93;</span> == <span style="color: #ff0000;">&quot;1&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$start</span> = <span style="color: #cc66cc;">0</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$_GET</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'page\'</span><span style="color: #66cc66;">&#93;</span> = <span style="color: #cc66cc;">1</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">else</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$start</span> = <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$_GET</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'page\'</span><span style="color: #66cc66;">&#93;</span><span style="color: #cc66cc;">-1</span><span style="color: #66cc66;">&#41;</span> * <span style="color: #0000ff;">$limit</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$start</span>;<br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; <span style="color: #808080; font-style: italic;">/***********************************************************************************<br />');
document.write('&nbsp; &nbsp;* int findPages (int count, int limit)<br />');
document.write('&nbsp; &nbsp;* Returns the number of pages needed based on a count and a limit<br />');
document.write('&nbsp; &nbsp;***********************************************************************************/</span><br />');
document.write('&nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">function</span> findPages<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$count</span>, <span style="color: #0000ff;">$limit</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$pages</span> = <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$count</span> % <span style="color: #0000ff;">$limit</span><span style="color: #66cc66;">&#41;</span> == <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span> ? <span style="color: #0000ff;">$count</span> / <span style="color: #0000ff;">$limit</span> : <a target="_blank"&nbsp; href="http://www.php.net/floor"><span style="color: #000066;">floor</span></a><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$count</span> / <span style="color: #0000ff;">$limit</span><span style="color: #66cc66;">&#41;</span> + <span style="color: #cc66cc;">1</span>;<br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$pages</span>;<br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; <span style="color: #808080; font-style: italic;">/***********************************************************************************<br />');
document.write('&nbsp; &nbsp;* string pageList (int curpage, int pages)<br />');
document.write('&nbsp; &nbsp;* Returns a list of pages in the format of &quot;« &lt; [pages] &gt; »&quot;<br />');
document.write('&nbsp; &nbsp;***********************************************************************************/</span><br />');
document.write('&nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">function</span> pageList<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span>, <span style="color: #0000ff;">$pages</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span>&nbsp; = <span style="color: #ff0000;">&quot;&quot;</span>;<br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #808080; font-style: italic;">/* Print the first and previous page links if necessary */</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span> != <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span> &amp;&amp; <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot;&nbsp; &lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>.<span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'PHP_SELF\'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #ff0000;">&quot;?page=1<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span>First Page<span style="color: #000099; font-weight: bold;">\&quot;</span> class=\'aPager\'&gt;&amp;#171;&lt;/a&gt; &quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">-1</span><span style="color: #66cc66;">&#41;</span> &gt; <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>.<span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'PHP_SELF\'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #ff0000;">&quot;?page=&quot;</span>.<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">-1</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span>Previous Page<span style="color: #000099; font-weight: bold;">\&quot;</span> class=\'aPager\'&gt;&lt;&lt;/a&gt; &quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #808080; font-style: italic;">/* Print the numeric page list; make the current page unlinked and bold */</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">for</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$i</span>=<span style="color: #cc66cc;">1</span>; <span style="color: #0000ff;">$i</span>&lt;=<span style="color: #0000ff;">$pages</span>; <span style="color: #0000ff;">$i</span>++<span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$i</span> == <span style="color: #0000ff;">$curpage</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot;&lt;b&gt;&quot;</span>.<span style="color: #0000ff;">$i</span>.<span style="color: #ff0000;">&quot;&lt;/b&gt;&quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">else</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>.<span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'PHP_SELF\'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #ff0000;">&quot;?page=&quot;</span>.<span style="color: #0000ff;">$i</span>.<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span>Page &quot;</span>.<span style="color: #0000ff;">$i</span>.<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> class=\'aPager\'&gt;&quot;</span>.<span style="color: #0000ff;">$i</span>.<span style="color: #ff0000;">&quot;&lt;/a&gt;&quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot; &quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #808080; font-style: italic;">/* Print the Next and Last page links if necessary */</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">+1</span><span style="color: #66cc66;">&#41;</span> &lt;= <span style="color: #0000ff;">$pages</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>.<span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'PHP_SELF\'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #ff0000;">&quot;?page=&quot;</span>.<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">+1</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span>Next Page<span style="color: #000099; font-weight: bold;">\&quot;</span> class=\'aPager\'&gt;&gt;&lt;/a&gt; &quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span> != <span style="color: #0000ff;">$pages</span><span style="color: #66cc66;">&#41;</span> &amp;&amp; <span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$pages</span> != <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>.<span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'PHP_SELF\'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #ff0000;">&quot;?page=&quot;</span>.<span style="color: #0000ff;">$pages</span>.<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span>Last Page<span style="color: #000099; font-weight: bold;">\&quot;</span> class=\'aPager\'&gt;&amp;#187;&lt;/a&gt; &quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$page_list</span> .= <span style="color: #ff0000;">&quot;&lt;/td&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span>;<br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$page_list</span>;<br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; <span style="color: #808080; font-style: italic;">/***********************************************************************************<br />');
document.write('&nbsp; &nbsp;* string nextPrev (int curpage, int pages)<br />');
document.write('&nbsp; &nbsp;* Returns &quot;Previous | Next&quot; string for individual pagination (it\'s a word!)<br />');
document.write('&nbsp; &nbsp;***********************************************************************************/</span><br />');
document.write('&nbsp; &nbsp;<span style="color: #000000; font-weight: bold;">function</span> nextPrev<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span>, <span style="color: #0000ff;">$pages</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$next_prev</span>&nbsp; = <span style="color: #ff0000;">&quot;&quot;</span>;<br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">-1</span><span style="color: #66cc66;">&#41;</span> &lt;= <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$next_prev</span> .= <span style="color: #ff0000;">&quot;Previous&quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">else</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$next_prev</span> .= <span style="color: #ff0000;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>.<span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'PHP_SELF\'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #ff0000;">&quot;?page=&quot;</span>.<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">-1</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;Previous&lt;/a&gt;&quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$next_prev</span> .= <span style="color: #ff0000;">&quot; | &quot;</span>;<br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">+1</span><span style="color: #66cc66;">&#41;</span> &gt; <span style="color: #0000ff;">$pages</span><span style="color: #66cc66;">&#41;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$next_prev</span> .= <span style="color: #ff0000;">&quot;Next&quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">else</span><br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br />');
document.write('&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #0000ff;">$next_prev</span> .= <span style="color: #ff0000;">&quot;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span>.<span style="color: #0000ff;">$_SERVER</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">\'PHP_SELF\'</span><span style="color: #66cc66;">&#93;</span>.<span style="color: #ff0000;">&quot;?page=&quot;</span>.<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$curpage</span><span style="color: #cc66cc;">+1</span><span style="color: #66cc66;">&#41;</span>.<span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;Next&lt;/a&gt;&quot;</span>;<br />');
document.write('&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<br />');
document.write('&nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$next_prev</span>;<br />');
document.write('&nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('&nbsp; <span style="color: #66cc66;">&#125;</span><br />');
document.write('<span style="color: #000000; font-weight: bold;">?&gt;</span><br />');
document.write('<br />');
document.write('&nbsp;</div>');
document.write('<br />&nbsp;<br /><div style="font-size: 12px">Brought to you by the community at <a href="http://www.bytemycode.com/snippets/snippet/463/1/" target="_blank">byteMyCode</a>.</div>');
