$(function(){
//ポップアップ	
	$("a.zoom").click(function (){
		window.open(this.href, '','width=470, height=180, status=yes, resizable=yes, scrollbars=no');
		return false;
	});
});
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function Test() { //v2.0
}

//faq用on-off切り替え
function faq(id) {
if (document.getElementById(id).style.display == "none") {
document.getElementById(id).style.display="block";
}
else {
document.getElementById(id).style.display="none";
}
}
