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