	var openpne_login = false;
	
	function openpne_login_error(){
		alert('SNSへログイン中でないと押せないリンクです。');
		//location.reload();
	}
	
	$('a.openpne').each(function() {
//		$(this).attr('href', "javascript:openpne_login_error();");
		$(this).attr('href', "#");
		$(this).click(function(){openpne_login_error(); return false;});
	});

