I'd list it - you can have three adds on the gallery pages - more chances to sell.
After reading the above comments, you've come a long way. I start every FS with two tables - one set to 100% width and centered (I call this the "wrapper table"). This enures the site centers in FireFox. I then add a table inside the the wrapper table (I call this one the "content table"), set it's width to 760, center it then add all my content inside ths table. Every FS I make starts with this setup.
You can change width as needed. I left the llink to the stylesheet as I always use one.
Feel free to use this - it is just basic html and has no content copyright value.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Title</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<meta name="description" content="description" />
<meta name="keywords" content="add keywords" />
</head>
<body class="wrapper_table">
<table align="center" width=100% cellpadding="0" cellspacing="0" border="0" class="wrapper_table"><tr><td align="center">
<!--Header Table - Place h1-3 in this table - may use an image for the background-->
<table align="center" width="760" cellspacing="0" cellpadding="0" border="1" class="content_table"><tr><td align="center">
<table align="center" width="760" border="0" cellspacing="0" cellpadding="0" class="header_table">
<tr>
<td align="center">
<h1 class="h1">Title</h1>
<h3 class="h3">Discription</h3>
</td>
</tr>
</table>
<!--Place all content tables below this line and before the 2257 Disclaimer Table-->
Place content here
<!--End Content Here-->
<!--Closes Content Table-->
</td></tr></table>
<!--Closes Wrapper Table-->
</td></tr></table>
</body>
</html>