// JavaScript Document

/*------------------------------------------------------------------------------------------

  Window Open Script (target属性の代替)

　ex：<a href="" title="" onclick="wopen(this.href);return false;">リンクテキスト</a>

------------------------------------------------------------------------------------------*/



//標準
function wopen(url) {
	if (url) {
		opwin = window.open(url);
		opwin.focus();
	}
}

//ポップアップ（標準）
function popupOpWin(url) {
	if (url) {
		opwin = window.open(url,"","width=470,height=440,scrollbars=yes");
		opwin.focus();
	}
}

//ポップアップ（予告）
function popupTrailer(url) {
	if (url) {
		opwin = window.open(url,"","width=680,height=500,scrollbars=yes");
		opwin.focus();
	}
}

