/******************************************************************************
 * アプリケーションヘルパ
 */

/******************************************************************************
 * 商品小/大を表示
 */
function show_product_small(nth) {
	$('product_large_' + String(nth)).hide();
	$('product_thumbnail_' + String(nth)).show();
	
	location.href = '#' + 'product_' + String(nth);
	
	return undefined;
}

function show_product_large(nth) {
	$('product_large_' + String(nth)).show();
	$('product_thumbnail_' + String(nth)).hide();
	
	location.href = '#' + 'product_' + String(nth);
	
	return undefined;
}

/******************************************************************************
 * 同梱の可否
 */
function is_collected(value) {
	if (value) {
		return '可';
	}
	else {
		return '不可';
	}
}

function render_from_uri(uri, id) {
	var ajp = new AjaxPages();
	if(id != null && uri != null) {
		ajp.load(uri);
		$(id).innerHTML = ajp.process();
	}	
}
