// JavaScript Document
/*
var vGoldSbjBuy  = '1,979';
var vGoldSbjSell = '1,987';
var vGoldSjcBuy  = '1,977';
var vGoldSjcSell = '1,987';
*/

var Gold = {
	vGoldSbj: new Array(),
	vGoldSjc: new Array(),
	title:'',
	html:'<div class="you_known_title">%s</div>',
  	init: function(title, g)
	{
		this.vGoldSbj = g;
		this.title = title;
	},
	display:function(buyOrSell)
	{
		var html = this.html.replace('%s',this.title);
		switch(buyOrSell)
		{
			case 0://Buy
				html+='<div>'+'<div class="you_known_label">'+this.vGoldSbj[0][0]+'</div>';
				html+='<div class="you_known_value">'+this.vGoldSbj[0][1]+' '+this.vGoldSbj[0][2]+'</div></div>';
				html+='<div style="clear:both;"></div>';
				break;
			case 1://Sell
				html+='<div>'+'<div class="you_known_label">'+this.vGoldSbj[1][0]+'</div>';
				html+='<div class="you_known_value">'+this.vGoldSbj[1][1]+' '+this.vGoldSbj[1][2]+'</div></div>';
				html+='<div style="clear:both;"></div>';
				break;
			default:
				html+='<div>'+'<div class="you_known_label">'+this.vGoldSbj[0][0]+'</div>';
				html+='<div class="you_known_value">'+this.vGoldSbj[0][1]+' '+this.vGoldSbj[0][2]+'</div></div>';
				html+='<div style="clear:both;"></div>';
				html+='<div>'+'<div class="you_known_label">'+this.vGoldSbj[1][0]+'</div>';
				html+='<div class="you_known_value">'+this.vGoldSbj[1][1]+' '+this.vGoldSbj[1][2]+'</div></div>';
				html+='<div style="clear:both;"></div>';
				break;
		}
		document.write(html);  
	}
}
