//
function parentW(url){
	if(!window.opener || window.opener.closed){
		window.alert('親のウィンドウがありません');
	}
	else{
		window.opener.location.href = url;
		window.opener.focus();
	}
} 
//

