//ポップアップ
function openfig(fi,na,w,h) {
	//fiはfileパス naはウィドウ名
	window.open(fi,na,"width="+w+",height="+h+",left=100,top=100,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,favorites=no,resizable=yes");
}

//リンクボタン
function link(){
	document.getElementById('comment').value = document.getElementById('comment').value + '<a href="ここにURL" target="_blank">ここにテキスト</a>';
}

