
function DivVisibility_Scheda(strShow,strHidden)
{	
	Show_scheda =document.getElementById(strShow);
	Show_data=document.getElementById(strShow+'_dati');
	Hid_scheda =document.getElementById(strHidden);
	Hid_data=document.getElementById(strHidden+'_dati');

	Show_scheda.className='voce_scheda_vino_selected';
	Hid_scheda.className='voce_scheda_vino';
	
	Hid_data.style.display ='none';
    Show_data.style.display ='block';
	   
}

function DivVisibility(strID)
{	
	IdDiv=document.getElementById('div_'+strID);
	IdDivImg=document.getElementById('img_'+strID);
	
	if(IdDiv.style.display=='block'){
		IdDiv.style.display='none';
		IdDivImg.src='/img/freccia_bianca_down.jpg';
	} else {
		IdDiv.style.display='block';
		IdDivImg.src='/img/freccia_bianca_up.jpg';
	}
}
function stampa(){
	window.print();
}
