function topTable()
{

document.write("<table width='780' border='0' cellspacing='0' cellpadding='0'  align='center'>");
  document.write("<tr>"); 
    document.write("<td valign='middle' width='780' align='center'>"); 
    document.write("<img src='images/top.jpg' border='0' usemap='#Map'>"); 
    document.write("</td>");
  document.write("</tr>");
document.write("</table>");
document.write("<map name='Map'>");
  document.write("<area shape='rect' coords='11,97,65,113' href='about.html' target='_self' alt='about us' title='about us'>");
  document.write("<area shape='rect' coords='139,95,184,111' href='clients.html' target='_self' alt='clients' title='clients'>");
  document.write("<area shape='rect' coords='253,97,314,111' href='contact.html' target='_self' alt='contact us' title='contact us'>");
document.write("</map>");

}