function showhide2(id1, id2) {
	if (id1 != '') showhide2_v(id1);
	if (id2 != '') showhide2_v(id2);
}

function showhide2_v(id) {
	if (document.getElementById(id).style.display == 'none') {
		document.getElementById(id).style.display = 'block';
		document.getElementById('td_'+id).className = 'table_title1';
        document.getElementById('pic_'+id).src = 'http://www.pfk.ru/images/optionminus.gif';		
	} else {
		document.getElementById(id).style.display = 'none';
		document.getElementById('td_'+id).className = 'table_title';
        document.getElementById('pic_'+id).src = 'http://www.pfk.ru/images/optionplus.gif';
	}
	
}
