﻿var vForexs = new Array();
var vCosts = new Array();
vForexs[0]  = 'USD';  vCosts[0]  = '21.036';
vForexs[1]  = 'GBP';  vCosts[1]  = '32.415';
vForexs[2]  = 'HKD';  vCosts[2]  = '2.719';
vForexs[3]  = 'CHF';  vCosts[3]  = '22.237';
vForexs[4]  = 'JPY';  vCosts[4]  = '275.27';
vForexs[5]  = 'AUD'; vCosts[5]  = '21.962';
vForexs[6]  = 'CAD'; vCosts[6]  = '20.821';
vForexs[7]  = 'SGD'; vCosts[7]  = '16.435';
vForexs[8]  = 'EUR'; vCosts[8]  = '26.904';
vForexs[9]  = 'NZD'; vCosts[9]  = '16.942';
vForexs[10] = 'Bat Thái Lan'; vCosts[10] = '761';
	document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%"  class="weather">');
	try
	{
		if (typeof vForexs[0]  != 'undefined')
	    	document.write('<tr><td>&nbsp;&nbsp;' + vForexs[0] + '</td><td>&nbsp;' + vCosts[0] + '</td></tr>');
		if (typeof vForexs[1]  != 'undefined')
	    	document.write('<tr><td>&nbsp;&nbsp;' + vForexs[1] + '</td><td>&nbsp;' + vCosts[1] + '</td></tr>');
	    if (typeof vForexs[2]  != 'undefined')
	    	document.write('<tr><td>&nbsp;&nbsp;' + vForexs[2] + '</td><td>&nbsp;' + vCosts[2] + '</td></tr>');
	    if (typeof vForexs[3]  != 'undefined')
	    	document.write('<tr><td>&nbsp;&nbsp;' + vForexs[3] + '</td><td>&nbsp;' + vCosts[3] + '</td></tr>');
	    if (typeof vForexs[4]  != 'undefined')
	    	document.write('<tr><td>&nbsp;&nbsp;' + vForexs[4] + '</td><td>&nbsp;' + vCosts[4] + '</td></tr>');
	    if (typeof vForexs[5]  != 'undefined')
		    document.write('<tr><td>&nbsp;&nbsp;' + vForexs[5] + '</td><td>&nbsp;' + vCosts[5] + '</td></tr>');
		if (typeof vForexs[6]  != 'undefined')
		    document.write('<tr><td>&nbsp;&nbsp;' + vForexs[6] + '</td><td>&nbsp;' + vCosts[6] + '</td></tr>');
		if (typeof vForexs[7]  != 'undefined')
		    document.write('<tr><td>&nbsp;&nbsp;' + vForexs[7] + '</td><td>&nbsp;' + vCosts[7] + '</td></tr>');
		if (typeof vForexs[8]  != 'undefined')
		    document.write('<tr><td>&nbsp;&nbsp;' + vForexs[8] + '</td><td>&nbsp;' + vCosts[8] + '</td></tr>');
		if (typeof vForexs[9]  != 'undefined')
		    document.write('<tr><td>&nbsp;&nbsp;' + vForexs[9] + '</td><td>&nbsp;' + vCosts[9] + '</td></tr>');
		if (typeof vForexs[10]  != 'undefined')
		    document.write('<tr><td>&nbsp;&nbsp;' + vForexs[10] + '</td><td>&nbsp;' + vCosts[10] + '</td></tr>');
		if (typeof vForexs[11]  != 'undefined')
		    document.write('<tr><td>&nbsp;&nbsp;' + vForexs[11] + '</td><td>&nbsp;' + vCosts[11] + '</td></tr>');
		}
	catch (error)
	{

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