<?php header('Content-type: text/html; charset=utf-8'); ?><?php  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */  // load viewer library  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';  $dirsToCheck = array('/services8/webpages/util/n/w/nwsc5872139.myutilitydomain.com/public/','','../','../../','../../../');  foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}  if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }  // load records  list($boxRecords, $boxMetaData) = getRecords(array(    'tableName'   => 'box',    'limit'       => '3',    'orderBy'     => 'RAND()',  ));?><?php foreach ($boxRecords as $record): ?><table width="311" border="0" cellspacing="0" cellpadding="0">                      <tr>                        <td width="300">                        <table width="300" border="0" cellpadding="0" cellspacing="0" bgcolor="#cccccc" id="sidebox">                        <tr>                              <td rowspan="6" align="left" valign="top"><img src="assets/1pixel.gif" width="10" height="10" /></td>                              <td align="left" valign="top"><img src="assets/1pixel.gif" width="280" height="10" /></td>                              <td rowspan="6" align="left" valign="top"><img src="assets/1pixel.gif" width="10" height="10" /></td>                            </tr>                            <tr>                              <td align="center" valign="top" class="sideboxTitle"><?php echo $record['title'] ?></td>                            </tr>                                                        <tr>                              <td align="center" valign="top" class="sideboxSubtitle"><?php echo $record['subtitle'] ?></td>                            </tr>                            <tr>                              <td align="left" valign="top"><img src="assets/1pixel.gif" alt="" width="280" height="12" /></td>                            </tr>                            <tr>                              <td align="left" valign="top" class="textmain"><?php echo $record['content'] ?></td>                            </tr>                            <tr>                              <td align="left" valign="top"><img src="assets/1pixel.gif" width="280" height="10" /></td>                            </tr>                        </table>                        </td>                        <td background="assets/box-shad-right.jpg" style="background-repeat:repeat-y;">&nbsp;</td>                      </tr>                      <tr>                        <td background="assets/box-shad-bottom.jpg" style="background-repeat:repeat-x;">&nbsp;</td>                        <td background="assets/box-shad-botright-corner.jpg" style="background-repeat:no-repeat;">&nbsp;</td>                      </tr>                  </table>    <?php endforeach ?>    <?php if (!$boxRecords): ?>      No records were found!<br/><br/>    <?php endif ?>