function disp(url){	if(!window.opener || window.opener.closed){		window.alert('メインウィンドウがありません');	}	else{		window.opener.location.href = url;		window.close();	}}