function TextAreaSelect(){
	document.form1.text1.focus();	//テキストエリアをフォーカスする
	document.form1.text1.select();	//テキストエリアを全選択する
}