function toggleAccountNo()
{
	if($('[name=wt]').get(0).checked)
		$('#accountNo').hide();
	else
		$('#accountNo').show();
}

function toggleDetails(id)
{
	if($('#' + id).css('display') == 'none')
	{
		$('#' + id).show();
		$('#getDetails' + id + '> a').html('chiudi dettagli');
	}
	else
	{
		$('#' + id).hide();
		$('#getDetails' + id + '> a').html('dettagli');
	}
}

function getReceipt(letteraVettura,dataSpedizione,dataConsegna,accountno)
{
	var mywin = window.open("","receiptWindow","toolbar=no,width=600px,height=630px,alwaysRaised=yes,scrollbars=yes, resizable=yes");
	document.receiptForm.actionType.value='richiediProvaConsegna';
	document.receiptForm.consigNos.value=letteraVettura;
	document.receiptForm.consigNosDate.value=dataSpedizione;
	document.receiptForm.consigNosDelivery.value=dataConsegna;
	document.receiptForm.accountNo.value=accountno;
	document.receiptForm.submit();
}

