/* 画面を印刷します */
function printWindow() {
	if(window.print) {
		window.print();
	}
	else {
		alert('お使いのブラウザでプリントアウトされる場合は、ファイルメニューの「印刷」オプションを使って出力するか、次のショートカットキーで印刷できます。Windows：「Ctrlキーを押しながらP」　Macintosh：「Commandキーを押しながらP」 ');
	}
}

/* ブラウザウィンドウオープン */
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

/* プルダウンから任意のウィンドウオープン */
function selJump(selObj) {
var option = selObj.options[selObj.selectedIndex];

url = option.value;
target = option.getAttribute('name');
if( target ) {
ref = target.split(":")
window.open(url, ref[0], "width=" + ref[1] + ", height=" + ref[2]);
} else {
location.href = url;
}
}