
function hilight_kamoku(){
	var loc = window.location.href;
	
	reg_seikei = new RegExp(/_x_seikei/);
		if(loc.match(reg_seikei)){hilight_kamoku_do('seikei');return;}
	
	reg_naika = new RegExp(/_x_naika/);
		if(loc.match(reg_naika)){hilight_kamoku_do('naika');return;}
	
	reg_rihabili = new RegExp(/_x_rehabili/);
		if(loc.match(reg_rihabili)){hilight_kamoku_do('rehabili');return;}
	
	reg_geka = new RegExp(/_x_geka/);
		if(loc.match(reg_geka)){hilight_kamoku_do('geka');return;}
	
	reg_liumati = new RegExp(/_x_liumati/);
		if(loc.match(reg_liumati)){hilight_kamoku_do('liumati');return;}
	
	reg_painclinic = new RegExp(/_x_painclinic/);
		if(loc.match(reg_painclinic)){hilight_kamoku_do('painclinic');return;}
			
	reg_sportsseikei = new RegExp(/_x_sportsseikei/);
		if(loc.match(reg_sportsseikei)){hilight_kamoku_do('sportsseikei');return;}
}
function hilight_kamoku_do(id){
	var did="d_"+id;
	
	if(!document.getElementById(did)){alert(did);return;}
	
	document.getElementById(did).style.color="#994400";
	document.getElementById(did).style.border="thick solid #ffdd99";
	document.getElementById(did).style.backgroundColor = '#fff6f0';
	document.getElementById(did).style.padding = '1em';
	document.getElementById(did).style.margin = '5em 0em 3em 0em';
	document.getElementById(did).style.overflow = 'hidden';
	
	var rid="r_"+id;
	
	if(!document.getElementById(rid)){alert(rid);return;}
	
	document.getElementById(rid).style.display = 'block';
	
	return;
}




