﻿/*function ShowGoldPrice()
{
	function AddGoldPrice(Currency, Rate)
	{	
		document.writeln('<tr bgcolor="#ffffff"><td style="border:dotted 1px gray;border-right:solid 0px; border-bottom:solid 0px;">&nbsp;', Currency, '</td><td style="border:dotted 1px gray; border-bottom:solid 0px;" align=right>', Rate, '&nbsp;</td></tr>');
	}
	
	document.writeln('<table width="100%" border=0 cellspacing=0 cellpadding=1 >');
	if (typeof(vGoldBuy) !='undefined') AddGoldPrice('Mua', vGoldBuy);
	if (typeof(vGoldSell)!='undefined') AddGoldPrice('Bán', vGoldSell);
	document.writeln('<tr bgcolor="#ffffff"><td colspan=2 style="border:dotted 1px gray;" align=center><i>(Nguồn Cty SJC Hà Nội)</td></tr>');
	document.writeln('</table>');
}
ShowGoldPrice();
*/
function ShowGoldPrice(){
 var sHTML = '';
 
 sHTML = sHTML.concat('<table  cellpadding="3px" cellspacing="0px" width="100%" style="color:black; font-size:11px;">');
 sHTML = sHTML.concat(' <tr>');
 sHTML = sHTML.concat(' <td style="font-size:11px;color:red;width:46%;border:dotted 1px gray;border-right:solid 0px; border-bottom:solid 0px;">Lo&#7841;i v&#224;ng</td>');
 sHTML = sHTML.concat(' <td  style="text-align:center;font-size:11px;color:red;width:27%;border:dotted 1px gray;border-right:solid 0px; border-bottom:solid 0px;">Mua</td>');
 sHTML = sHTML.concat(' <td style="text-align:center;font-size:11px;color:red;width:27%;border:dotted 1px gray;border-right:dotted 1px gray; border-bottom:solid 0px;">B&#225;n</td>');
 sHTML = sHTML.concat(' </tr>');
 sHTML = sHTML.concat(' <tr>');
 sHTML = sHTML.concat(' <td style="border:dotted 1px gray;border-right:solid 0px; border-bottom:solid 0px;">SBJ</td>');
 sHTML = sHTML.concat(' <td style="border:dotted 1px gray;border-right:solid 0px; border-bottom:solid 0px;">').concat(vGoldSbjBuy).concat('</td>');
 sHTML = sHTML.concat(' <td style="border:dotted 1px gray;border-right:dotted 1px gray; border-bottom:solid 0px;">').concat(vGoldSbjSell).concat('</td>');
 sHTML = sHTML.concat(' </tr>');
 sHTML = sHTML.concat(' <tr>');
 sHTML = sHTML.concat(' <td style="border:dotted 1px gray;border-right:solid 0px; border-bottom:dotted 1px gray;">SJC</td>');
 sHTML = sHTML.concat(' <td style="border:dotted 1px gray;border-right:solid 0px; border-bottom:dotted 1px gray;">').concat(vGoldSjcBuy).concat('</td>');
 sHTML = sHTML.concat(' <td style="border:dotted 1px gray;border-right:dotted 1px gray; border-bottom:dotted 1px gray;">').concat(vGoldSjcSell).concat('</td>');
 sHTML = sHTML.concat(' </tr>');
 sHTML = sHTML.concat('</table>');
 sHTML = sHTML.concat('<span style="float:right;color:blue;font:bold 10px arial; padding-right:5px; padding:3px;">ĐVT: tr.&#273;/ch&#7881;</span>');
 gmobj('eGold').innerHTML = sHTML;
}
//
ShowGoldPrice();
