Hi,You could always use tables. Then you can assign bgcolor= statements to each cell in the table or just use multiple tables each having it's own bgcolor= statements.
<table border="1" width="100%">
<tr>
<td width="50%" bgcolor="#008000"> </td>
<td width="50%" bgcolor="#800080"> </td>
</tr>
</table>
OR
<table border="1" width="100%" bgcolor="#008000">
<tr>
<td width="100%"> </td>
</tr>
</table>
<table border="1" width="100%" bgcolor="#800080">
<tr>
<td width="100%"> </td>
</tr>
</table>
Brian
------------------
Work hard, play fair, stay sane
[This message has been edited by GWJ (edited 05-17-2001).]