function itemOn(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #E6E6E6';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#BBBBBB';
}

function itemOff(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #FFFFFF';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#999999';
}

function itemOnNew(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #E6E6E6';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#BBBBBB';
}

function itemOffNew(nGoodsID) {
	document.getElementById('item-box'+nGoodsID).style.border = '1px solid #FFFFFF';
	document.getElementById('item-box-name'+nGoodsID).style.color = '#999999';
}

function itemClick(link){
	location.href = link;
}
