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">18,220</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">18,618</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">24,707</td>')
	document.write('<td class="currency_number" align="right" width="55">25,095</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">29,540</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">30,125</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">216</td>')
	document.write('<td class="currency_number" align="right" width="55">221</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">13,872</td>')
	document.write('<td class="currency_number" align="right" width="55" bordercolor="#F5F5F5">14,147</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">19,095</td>')
	document.write('<td class="currency_number" align="right" width="55">19,100</td>')
	document.write('</tr>')

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