// JavaScript Document
function btnChange(id){
	var ID = document.getElementById(id);
	if(ID.style.textDecoration == "underline"){
		ID.style.textDecoration = "none"
	}else{
		ID.style.textDecoration = "underline";
	}
}