function ShowFullText( type ){
	if( "on" == type ){
		document.getElementById( "fulltext" ).style.display = 'block';
		document.getElementById( "expand" ).innerHTML = '<a href="#" onClick="ShowFullText(\'off\'); return false;">Скрыть полный текст статьи</a>';
	}else{
		document.getElementById( "fulltext" ).style.display = 'none';
		document.getElementById( "expand" ).innerHTML = '<a href="#" onClick="ShowFullText(\'on\'); return false;">Читать полный текст статьи...</a>';
	}
}