﻿// ____________________________

// テキストボックスでEnterを押されたら検索開始する
function setEnterFocus(id){
    if(event.keyCode == 13){//Enterキーは13番
        document.getElementById(id).focus();
    }
}

// ページ内にアンカーポイントへジャンプする
function focusTitle(titleId){
	if(document.getElementById(titleId) != null){
    	document.getElementById('titleBottom').focus();
    	document.getElementById(titleId).focus();
	}
}

// 値をセットして問合せフォームへ移動する
function gotoContactPage(id)
{
    if(confirm("問い合わせフォームへ移動してもよろしいですか？") == true){
        location.replace("/ContactForm.aspx?product=" + encodeURIComponent(document.getElementById(id).value));
    }
}
