// Gold System

/**
 *
 * @access public
 * @return void
 **/
function gold_ConfirmPurchase(item,cost)
{
	return confirm(gold_system_confirm_pre+" - " + item + " - " + gold_system_confirm_post + " " + cost);
}
function gold_ConfirmPurchaseGo(item,cost,go){
	if (confirm(gold_system_confirm_pre+" - " +item + " - "+gold_system_confirm_post +" " + cost))
	{
		document.location.href='?buy=' + go
	}
	else
	{
		return false;
	}
}