
//==============================================================================
//	ポップアップウィンドウ設定
//==============================================================================
function popup1(loc,win) {
	var myWindow = window.open(loc, win, 'resizable=1,toolbar=0,scrollbars=1,status=0,width=800,height=600');
myWindow.focus();
}

function popup3(loc,win) {
	var myWindow = window.open(loc, win, 'resizable=1,toolbar=0,scrollbars=1,status=0,width=1100,height=600');
myWindow.focus();
}


//==============================================================================
//	CM動画ポップアップウィンドウ設定
//==============================================================================
function popup2(loc,win) {
	var myWindow = window.open(loc, win, 'resizable=1,toolbar=0,scrollbars=1,status=0,width=760,height=620');
myWindow.focus();
}


// 2011.10.27追加　サイズ可変

function popup4(loc,win,w,h) {
	var myWindow = window.open(loc, win, 'resizable=1,toolbar=0,scrollbars=1,status=0,width='+w+',height='+h);
myWindow.focus();
}

