function writeCurrency()
{
	document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">')
	document.write('<table border="1" cellpadding="0" width="100%" style="border-collapse: collapse" bordercolor="#FFFFFF">')
	document.write('<tr style="background-color: rgb(233, 233, 233);" height="20">')
	document.write('<td class="currency_name" width="48" bordercolor="#F5F5F5">Code</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">Buy</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">Sale</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#F2F2F2" height="18">')
	document.write('<td class="currency_name" width="48" bordercolor="#F5F5F5">CAD</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">20</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">21</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#E8F5FF" height="18">')
	document.write('<td class="currency_name" width="48">EUR</td>')
	document.write('<td class="currency_number" align="right" width="55">27</td>')
	document.write('<td class="currency_number" align="right" width="55">27</td>')
	document.write('</tr>')

	document.write('<tr bgcolor="#F2F2F2" height="18">')
	document.write('<td class="currency_name" width="48" bordercolor="#F5F5F5">GBP</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">32</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">33</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#E8F5FF" height="18">')
	document.write('<td class="currency_name" width="48">JPY</td>')
	document.write('<td class="currency_number" align="right" width="55">269</td>')
	document.write('<td class="currency_number" align="right" width="55">277</td>')
	document.write('</tr>')

	document.write('<tr bgcolor="#F2F2F2" height="18">')
	document.write('<td class="currency_name" width="48" bordercolor="#F5F5F5">SGD</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">16</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">17</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#E8F5FF" height="18">')
	document.write('<td class="currency_name" width="48">USD</td>')
	document.write('<td class="currency_number" align="right" width="55">20</td>')
	document.write('<td class="currency_number" align="right" width="55">20</td>')
	document.write('</tr>')

	document.write('</table>')
}

