function drawTop(Title)
{
	HTMLTop  = '<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">';

	HTMLTop += '  <tr valign="top">';
	HTMLTop += '    <td  align="right">';
	HTMLTop += '      <font color="#404080" size="5"><b><i>';
	HTMLTop += Title;
	HTMLTop += ' </i></b></font>';
	HTMLTop += '      <hr size="3" width="100%" color="#404080"> ';
	HTMLTop += '    </td>';
	HTMLTop += '  </tr>';
	HTMLTop += '';
	HTMLTop += '  <tr valign="top" align="center">';
	HTMLTop += '    <td>';
	HTMLTop += '      <table width="90%" border="0" cellspacing="3" cellpadding="1">';
	HTMLTop += '';
	HTMLTop += '        <tr valign="top">';
	HTMLTop += '	  <td>';

	document.write(HTMLTop);

}

function drawBot()
{

	HTMLBot='';
	HTMLBot += '          </td>';
	HTMLBot += '	</tr>';
	HTMLBot += '      </table>';
	HTMLBot += '    </td>';
	HTMLBot += '  </tr>';
	HTMLBot += '';
	HTMLBot += '  <tr height="100%" valign="bottom">';
	HTMLBot += '    <td>';
	HTMLBot += '      <hr size="3" color="#404080">';
	HTMLBot += '      <div align="right">';
	HTMLBot += '      <font size="2" color="#404080">';

	HTMLBot += '      Produced by <a target="_blank"';
	HTMLBot += '      href="http://www.routeone.jp/">RouteOne Inc.</a><br>';
	HTMLBot += '      Copyright (C) 2002 Cyber-Zeirishi Renmei all rights reserved.';
	HTMLBot += '      </font>';
	HTMLBot += '    </td>';
	HTMLBot += '  </tr>';
	HTMLBot += '</table>';

	document.write(HTMLBot);
}
