﻿function writeCurrency()
{
	document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">')
	document.write('<table border="0" width="98%" cellpadding="1" cellspacing="1">')
	document.write('<tr bgcolor="#EFFFD5" 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="#E0FBB7" 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="#EFFFD5" 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="#E0FBB7" height="18">')
	document.write('<td class="currency_name" width="48">SGD</td>')
	document.write('<td class="currency_number" align="right" width="55">16</td>')
	document.write('<td class="currency_number" align="right" width="55">17</td>')
	document.write('</tr>')

	document.write('<tr bgcolor="#EFFFD5" height="18">')
	document.write('<td class="currency_name" width="48" bordercolor="#F5F5F5">USD</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">20</td>')
	document.write('</tr>')
	document.write('<tr bgcolor="#E0FBB7" height="18">')
	document.write('<td class="currency_name" width="48">YEN</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('</table>')
}

