//ポップアップ
function popup(URL){

	if( window.name == "POP" ){
		var PopWinName = "POP2";
	}
	else{
		var PopWinName = "POP";
	}

	var PROPERTY = "scrollbars=0,toolbar=1,location=1,directories=0,status=1,menubar=1,resizable=1,width=920,height=550";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}
