/**
 * リンク切れ
 * メール送信
 */
function linkReport(n) {
	$.ajax({
		url: '/include/module/mod_shopdeadlink.php?id='+n,
		type: 'GET',
		dataType: 'text',
		timeout: 1000,
		error: function(){ alert('失敗しました')},
		success: function(text) {alert('ご報告ありがとうございました')}
	});
}

