// JavaScript Document
function flashTable(flashImage)
{
document.write('<table width="0%" align="center" cellpadding="0" cellspacing="0"  class="table_flash">');
document.write('<tr>');
document.write('<td width="700" height="75" background="images/'+flashImage+'">');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
}//flashTable()

