/* テキストボックスの初期値の操作 (フォーカス取得時) */
function textOnfocus( item, text ) {

	if (item.value == text) {
		item.value = '';
		item.style.color = 'rgb(90,90,90)';
	}

}

/* テキストボックスの初期値の操作 (フォーカス失効時) */
function textOnblur( item, text ) {

	if (item.value == '') {
		item.value = text;
		item.style.color = 'rgb(200,200,200)';
	}
}
