function hidenews ( id )
{

	document.getElementById(id).style.display = 'none';
}

function shownews ( id )
{

	document.getElementById(id).style.display = 'block';

}
