// Mail Form JavaScript
var GuideSentence = 'ご意見・ご感想などありましたらお書きください。';
function ShowFormGuide(obj) {
// 入力案内を表示
	if( obj.value == '' ) {
		obj.value = GuideSentence;
		obj.style.color = '#666666';
	}
}
function HideFormGuide(obj) {
// 入力案内を消す
	if( obj.value == GuideSentence ) {
		obj.value='';
		obj.style.color = '#000000';
	}
}
