you can do this using some simple css if you so wish
Code:
<html>
<head>
<style type="text/css" title="text/css" media="all">
<!--
#container {
text-align:center;
}
#left {
display: inline;
float: left;
}
#center {
display: inline;
}
#right {
display: inline;
float: right;
}
-->
</style>
</head>
<body>
<table>
<tr>
<td>
<div id="container"><div id="left">left text</div><div id="center">center text</div></td>
</tr>
</table>
</body>
</html>
this should work ok for ya give it a whirl