function change(o,v){
	if (v == '1'){
		document.getElementById(o).style.fontWeight = "bold";
		document.getElementById(o).style.textDecoration = "none";
	} else {
		document.getElementById(o).style.fontWeight = "normal";
		document.getElementById(o).style.textDecoration = "underline";
	}
}