/**
 * 問合せにサブミットさせる処理
 *
 * @param formName フォーム名称
 * @param mode     問合せモード
 */
function submitInquiry(formName, mode){
	var bukkenId = "";
	
	try{
		bukkenId = document.forms[0].bukkenId.value;
	}catch(e){
		//
	}
	
	if(bukkenId == ""){
		location.href="https://www.nomu.com/biz/index.php?module=Inquiry&action=InquiryCall&assortment=" + mode;
	}else{
		location.href="https://www.nomu.com/biz/index.php?module=Inquiry&action=InquiryCall&assortment=" + mode +"&bukkenId=" + bukkenId;
	}
	
	/*
	var valueAssortment = ".assortment";
	var headDcument     = "document.";
	var formElement     = headDcument + formName;
	var formAssortment  = headDcument + formName + valueAssortment;
	
	eval(formAssortment).value = mode;

	eval(formElement).action = "https://www.nomu.com/biz/index.php?module=Inquiry&action=InquiryCall";
	eval(formElement).method = "post";
	eval(formElement).submit();
	*/
}
