
/* ============================================================
　ポップアップ
============================================================ */
function popup(src, wi, he){
	var wi2 = wi + 38;
	var he2 = he + 30;
	window.open(src,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+ wi2 + ',height='+ he2 + '');
}


$(function(){
	
	$('a.openParent')
		.click(function(event){
			window.opener.location.href = $(this).attr('href');
			
			return false;
		})


/* ============================================================
　history back
============================================================ */
	$('a.historyback').click(function(event){
		history.back();
		return false;
	})


});





