function putBuyButton(start, end, type) {
	nowtime  = 1283533326;
	nowtime2 = 7320;

	if (type == 2) {
		if (start < end && (start > nowtime2 || end < nowtime2)) {
			document.write('');
		}
		else if (start > end && start > nowtime2 && end < nowtime2) {
			document.write('');
		}
		else {
			document.write('<input type="hidden" name="num" value="1"><input type="submit" value="この商品を購入する">');
		}
	}
	else {
		if (nowtime < start) {
			document.write('');
		}
		else if (end != 0 && nowtime > end) {
			document.write('');
		}
		else {
			document.write('<input type="hidden" name="num" value="1"><input type="submit" value="この商品を購入する">');
		}
	}
}
