function underlineme(obj){
	if (obj.style.textDecoration == 'underline')
		obj.style.textDecoration = 'none';
	else
		obj.style.textDecoration = 'underline';
}

