// 別ウインドウが決まったサイズで開くするスクリプト。以下タグ表記
// <a href="リンク先ファイル" onclick="openwin();" target="win">
// ウインドウサイズを変えたい場合は同じものを関数名を変えて設置
function openwin()
{ 
window.open("",'win','width=600,height=600, status=no, toolbar=no, location=no, menubar=no, scrollbars=no, resizable=yes');
}

// セレクトメニューでリンク先に飛ぶスクリプト。以下タグ表記
// <select onchange="LinkSelect(this.form, this)">
// <option value="リンク先ファイル">リンク先タイトル</option>
function LinkSelect(form, sel)
{
	adrs = sel.options[sel.selectedIndex].value;
	if (adrs != "-" ) location.href = adrs;
}

// スパム対策リンクスクリプト。以下HTML内のJavascript表記
// links("href内のソース2","リンク部分の表記1","href内のソース1","href内のソース3","リンク部分の表記2");
function links()
{
linkurl=links.arguments[1] + links.arguments[4];
document.write(linkurl.link(links.arguments[2] + links.arguments[0] + links.arguments[3]));
}
