<?php
/*
GamePanelX
Description: Include for alternating table row colors
Author: Ryan D. Gehrig
License: GNU General Public License (GPL)
*/
$i = $i + 1;
if ($i&1)
{
$bgColor="#B0C4DE";
$bgOpp="#6699CC";
}
else
{
$bgColor="#D3E0EA";
$bgOpp="#6699CC";
}
?>