function FrameBorder(p_width, p_height, p_color, p_text)
{
 document.writeln('<table cellspacing="0" cellpadding="0" align="center" border="0">');
 document.writeln('<tr>');
 document.writeln('       <td class="left_top"></td>');
 document.writeln('       <td class="top"></td>');
 document.writeln('       <td class="right_top"></td>');
 document.writeln('</tr>');
 document.writeln('<tr>');
 document.writeln('       <td class="left"></td>');
 document.writeln('       <td style="width:' + p_width + '; height:' + p_height + '; background-color:' + p_color + ';">' + p_text + '</td>');
 document.writeln('       <td class="right"></td>');
 document.writeln('</tr>');
 document.writeln('<tr>');
 document.writeln('       <td class="left_bottom"></td>');
 document.writeln('       <td class="bottom"></td>');
 document.writeln('       <td class="right_bottom"></td>');
 document.writeln('</tr>');
 document.writeln('</table>');
}

