function news_over(number, date, title, subTitle, text, doc) { //v3.0
	obj = document.getElementById(number);
	if (obj)
	  obj.style.textDecoration = 'underline';
	obj = document.getElementById(date);
	if (obj)
	  obj.style.textDecoration = 'underline';
	obj = document.getElementById(title);
	if (obj)
	  obj.style.textDecoration = 'underline';
	obj = document.getElementById(subTitle);
	if (obj)
	  obj.style.textDecoration = 'underline';
	obj = document.getElementById(text);
	if (obj)
	  obj.style.textDecoration = 'underline';
	obj = document.getElementById(doc);
	if (obj)
	  obj.style.textDecoration = 'underline';
}
function news_out(number, date, title, subTitle, text, doc) { //v3.0
	obj = document.getElementById(number);
	if (obj)
	  obj.style.textDecoration = 'none';
	obj = document.getElementById(date);
	if (obj)
	  obj.style.textDecoration = 'none';
	obj = document.getElementById(title);
	if (obj)
	  obj.style.textDecoration = 'none';
	obj = document.getElementById(subTitle);
	if (obj)
	  obj.style.textDecoration = 'none';
	obj = document.getElementById(text);
	if (obj)
	  obj.style.textDecoration = 'none';
	obj = document.getElementById(doc);
	if (obj)
	  obj.style.textDecoration = 'none';
}