function mov(id)
{
	id = 'area_anchor' + id;
	document.getElementById(id).style.textDecoration = 'underline overline';
}
function mou(id)
{
	id = 'area_anchor' + id;
	document.getElementById(id).style.textDecoration = 'none';
}
