	function SetLinkStyle(obj, val){
		if (val=='on'){
			obj.style.textDecoration='underline';
			//obj.style.fontWeight='600';
		}
		else {
			obj.style.textDecoration='none';
			//obj.style.fontWeight='400';
		}
		return;
	}

	function SetLinkStyleBold(obj, val){
		if (val=='on'){
			obj.style.textDecoration='underline';
			obj.style.fontWeight='500';
		}
		else {
			obj.style.textDecoration='none';
			obj.style.fontWeight='400';
		}
		return;
	}