/*トップページ*/
function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}

/*トップページ-ポップアップ*/
function ctrlWin01()
{
	window.opener.location.href = "course/index.html";
self.close();
}

function ctrlWin02()
{
	window.opener.location.href = "audition/index.html";
self.close();
}

function ctrlWin03()
{
	window.opener.location.href = "seminar/index.html";
self.close();
}



/*年間スケジュール*/
function opencource(url) {
w = window.open(url, 'seminar','width=800,height=600, scrollbars=yes, resizable=yes, status=no, directories=no, menubar=no, toolbar=no, location=no');
w.focus();
}

/*資料請求*/
function openpop1(url) {
w = window.open(url, 'pop','width=610,height=500, scrollbars=yes, resizable=yes, status=no, directories=no, menubar=no, toolbar=no, location=no');
w.focus();
}

/*個人情報*/
function openpop2(url) {
w = window.open(url, 'privacy','width=800,height=600, scrollbars=yes, resizable=yes, status=no, directories=no, menubar=no, toolbar=no, location=no');
w.focus();
}

/*アクセス*/
function openpop3(url) {
w = window.open(url, 'access','width=600,height=600, scrollbars=yes, resizable=yes, status=no, directories=no, menubar=no, toolbar=no, location=no');
w.focus();
}

