/**
 * テキストエリアを全選択する
 * @param なし
 */
function TextAreaSelect(flg){
	if( flg == 1){
		document.form1.text.focus();	//テキストエリアをフォーカスする
		document.form1.text.select();	//テキストエリアを全選択する
	}else if( flg == 2){
		document.form2.text.focus();	//テキストエリアをフォーカスする
		document.form2.text.select();	//テキストエリアを全選択する
	}else if( flg == 3){
		document.form3.text.focus();	//テキストエリアをフォーカスする
		document.form3.text.select();	//テキストエリアを全選択する
	}
}

