<?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('/home/clsol/www/californialandlordsolutions.com/','','../','../../','../../../');
  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($faqRecords, $faqMetaData) = getRecords(array(
    'tableName'   => 'faq',
  ));

?> 

<STYLE TYPE="text/css"> 

html
{ 
scrollbar-face-color: #EF644D;
scrollbar-highlight-color: #ffffff;
scrollbar-3dlight-color: #FFFFFF;
scrollbar-darkshadow-color: #2a4480;
scrollbar-shadow-color: #2a4480;
scrollbar-arrow-color: #00468A;
scrollbar-track-color: #ffffff;
}
 

body {background-color: #ffffff;}



 a:link {
	color: #00468A;
	text-decoration: none;
	}
 a:visited {
	color: #EF644B;
	text-decoration: none;
	}

 a:hover {
	color: #EF644B;
	text-decoration: underline;
       }

.normal { line-height: 1.3em; font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif; color: #000000;}
 
 .title2 { font-size: 12pt; font-family: Verdana, Arial, Helvetica, sans-serif; color: #17365D;}
.title1 { font-size: 12pt; font-family: Verdana, Arial, Helvetica, sans-serif; color: #000000;}
}

 </style>

<?php include "include_header.php"; ?>


<div align="center">
	<table border="0" width="98%" id="table1">
		<tr>
			<td valign="top" align="left">
			<div class="title1"><b>FAQ</b></div>
			
				<table border="0" width="99%" id="table4" height="97%">
					<tr>
						<td height="100%">
			<blockquote>
				<div align="jusitfy" class="normal">
   
    <?php foreach ($faqRecords as $record): ?>
 
     <b> <?php echo $record['question'] ?></b><br/>
  <?php echo $record['answer'] ?><br/>
   <br/>

    
    <?php endforeach ?>

    <?php if (!$faqRecords): ?>
      No records were found!<br/><br/>
    <?php endif ?>
  <!-- /STEP2: Display Records -->

        </div>
			</blockquote>
		 				</td>
					</tr>
				</table>
 
			</td>
			<td width="2"></td>
			<td width="48%" valign="top" align="left">
		 
<div align="left" class="normal">
 
			<div align="center">
&nbsp;<table id="table5" border="2" bordercolor="#17365D" cellpadding="2" width="88%">
					<tr>
						<td bgcolor="#FFCC99">						
									<p align="center">
									<font size="2" face="Verdana"><b>Horror 
									Stories are a regular feature of California 
									Landlord Solutions. These are stories that 
									have happened to our members. We can all 
									learn from the experience of others!</b></font></p>
									<p align="center"><b>
									<font size="2" face="Verdana">
									<a href="http://www.californialandlordsolutions.com/JOINNOW.html">
									Join TODAY to read all the&nbsp;<br>
									stories &amp; receive future newsletters!</a>
									</font></b></td>
					</tr>
			 </table>
		</div>
			</div>
			</td>
		</tr>
	</table>
</div>




<?php include "include_footer.php"; ?>