//ポップアップ
function popup(URL){

	if( window.name == "POP" ){
		var PopWinName = "POP2";
	}
	else{
		var PopWinName = "POP";
	}

	var PROPERTY = "scrollbars=1,toolbar=0,location=0,directories=1,status=1,menubar=1,resizable=1,width=650,height=300";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}


//ポップアップ
function popup2(URL){

	if( window.name == "POP" ){
		var PopWinName = "POP2";
	}
	else{
		var PopWinName = "POP";
	}

	var PROPERTY = "scrollbars=1,toolbar=0,location=0,directories=1,status=1,menubar=1,resizable=1,width=650,height=600";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}



//ポップアップ
function popmovie(URL){

	if( window.name == "POP" ){
		var PopWinName = "POP2";
	}
	else{
		var PopWinName = "POP";
	}

	var PROPERTY = "scrollbars=1,toolbar=0,location=0,directories=1,status=1,menubar=1,resizable=1,width=680,height=530";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}

//ポップアップ
function popsize(URL){

	if( window.name == "POP" ){
		var PopWinName = "POP2";
	}
	else{
		var PopWinName = "POP";
	}

	var PROPERTY = "scrollbars=1,toolbar=0,location=0,directories=1,status=1,menubar=1,resizable=1,width=650,height=400";
	var PopWin = window.open(URL,PopWinName,PROPERTY);
	
	PopWin.focus();
	
}

