// self.nameで現在のフレーム名を取得。
// もし空文字ならば、フレームページを呼び出す。
if (self.name == "") {
	top.location.href="./index.html";
}
//プロフィール小窓オープン
function showGal(path) {
	var theURL= path;
	subWin=window.open(theURL,"mainWin","status=0,menubar=0,scrollbars=1,resizable=yes,width=770");
	subWin.focus();
}
//TICKET小窓オープン
function ticketWin(path) {
	var theURL= path;
	subWin=window.open(theURL,"ticketWin","status=0,menubar=0,scrollbars=1,resizable=auto,width=600");
	subWin.focus();
}
