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