function StartTable (width,Height)
{
document.write ("<table width=\""+width+"\" height=\""+Height+"\" cellpadding=0 cellspacing=0>");
document.write ("<tr>");
document.write ("<td width=10 height=5><img src=\"images/top_left.gif\"></td>");
document.write ("<td background=\"images/top.gif\"></td>");
document.write ("<td width=10 height=10><img src=\"images/top_right.gif\"></td>");
document.write ("</tr>");

document.write ("<tr>");
document.write ("<td background=\"images/left.gif\" width=10>&nbsp;</td>");
document.write ("<td class=middlecolor valign=middle><font class=\"main\">");
}

function EndTable ()
{
document.write ("</font></td><td background=\"images/right.gif\" width=10>&nbsp;</td>");
document.write ("</tr>");

document.write ("<tr>");
document.write ("<td width=10 height=10><img src=\"images/bottom_left.gif\"></td>");
document.write ("<td background=\"images/bottom.gif\"></td>");
document.write ("<td width=10 height=10><img src=\"images/bottom_right.gif\"></td>");
document.write ("</tr>");
document.write ("</table>");
}

