<html>
<head>
<title>
Background Color
</title>
<link media="screen" type="text/css" rel="stylesheet" href="../main.css" />
<style type='text/css'>
td{height: 10px;}
</style>
</head>
<body>
<script type='text/javascript'>
function transfer(content)
{
document.getElementById("last").innerHTML='<table>\n<tr>\n<td>Last Color:</td>\n<td><div id="div_body" class="css" style="background-color: #'+content+'; width: 20px; height: 20px;"></div></td>\n</tr>\n</table>';
window.opener.document.getElementById("text1").style.backgroundColor="#"+content;
}
</script>
<div align='center'>
<h3>Background Color</h3>
<h5>Click the color you want your background for your text to be. This will be different from the selected background color selected in your profile</h5>
<div id='last'>
<table>
<tr>
<td>Last Color:</td>
<td>_____</td>
</tr>
</table>
</div>
<table summary='symbols' border='0' style='border: 5px black outset;'>
<tr>
<?php
include("color_table.php");
?>
</tr>
</table>
<br/>
<button onclick='javascript:self.close();'>Close</button>
</body>
</html>