 
// swap_img2 (onMouseOver)
function _in(name) {
if(navigator.appVersion.charAt(0) >= "3") {
	str = document.images[name].src;
	if(str.substr(str.length-6,2) == "on") {
		n = 6;
		var onoff = "on";
	} else { n = 7; 
	var onoff = "off";
	}
	_file(onoff);
	str2 = "on";
	str3 = str.substr(str.length-4,4);
	file = str.substr(0,str.length-n);
	file = file + str2 + str3;
	document.images[name].src = file;
} else { }
}

// swap_img2 (onMouseOut)
function _out(name) {

_file();
str = document.images[name].src;
if(str.substr(str.length-6,2) == "ff") {
	n = 7;
} else { n = 6; }
str2 = onoff;
str3 = str.substr(str.length-4,4);
file = str.substr(0,str.length-n);
file = file + str2 + str3;
document.images[name].src = file;
}

function _file(name) {
	if(name){
		onoff=name;
		}
}

//2005/12/21 kaneko add
//FAQのカテゴリJUMP用
function jump(MyURL) {
	val = document.form1.category.options[document.form1.category.selectedIndex].value;
	if(val != ""){
		location.href=MyURL + '?category=' + document.form1.category.options[document.form1.category.selectedIndex].value + '&model_id=' + document.form1.model_id.value;
	}
}


//2006/05/22 kaneko add
//FAQの機種別カテゴリ用
function mjump(MyURL) {
	val = document.form1.model_id.value;
	if(val != ""){
		location.href=MyURL + '?model_id=' + document.form1.model_id.value;
	}
}