// JavaScript Document

/*** オブジェクトの[表示/非表示]制御 *******************************************/
function scriptLib() {

//	var volume = document.mailform.comment.value;
//	alert(volume);

	// 表示の分岐 ----------------------------------------------------
	var show = 0;

	if( document.mailform.business['0'].checked == true ){
		show = 1;

	} else if( document.mailform.business['1'].checked == true ){
		show = 2;
	}

	// 項目を隠す ----------------------------------------------------
	// IE
	//if(navigator.appName.charAt(0)=="M"){
	// Firefox
	//if(navigator.appName.charAt(0)=="N"){
		if( show == 1 ){
			document.getElementById('showForm').style.display = 'none';
		} else if( show == 2 ) {
			document.getElementById('showForm').style.display = 'block';
		}
	//}
}
