// JavaScript Document
function showhide(id)
{
if(document.getElementById('text'+id).style.display=='none')
	{
		document.getElementById('indet'+id).innerHTML='Скрыть текст';
		document.getElementById('text'+id).style.display='inline';
		document.getElementById('indet'+id).style.background='url(/images/uparr.gif) right 2px no-repeat';
	}
else{
	document.getElementById('indet'+id).innerHTML='Подробнее';
	document.getElementById('text'+id).style.display='none';
	document.getElementById('indet'+id).style.background='url(/images/downarr.gif) right 11px no-repeat';
	}
}
