//AL CARICAMENTO O REFRESH DEL SITO
function onLoadSito() {
	//carica carrello BIO
	makeRequest('include/BIO/ajax/carrello_menu.asp', 'LeftCarrello', true, 'carello')
}

//BENI DISMESSI BIO
function FiltraBeniDismessi(form_name,noreset) {

	theForm = document.forms[form_name];
	
	//per nuove ricerche torna a pagina 1 (noreset=1 per cambi pagina)
	if(noreset!=1) {
		document.getElementById('NumeroPagina').value=1
	}
	
	idClasse = ''
	idFornitore = ''
	idModello = ''
	EnteDonatore = ''
	
	
	if (theForm.idClasse)  {
		idClasse = theForm.idClasse.value		
	}

	if (theForm.idFornitore)  {
		idFornitore = theForm.idFornitore.value		
	}

	if (theForm.idModello)  {
		idModello = theForm.idModello.value		
	}
	
	if (theForm.EnteDonatore)  {
		EnteDonatore = theForm.EnteDonatore.value
	}		
	
	OrderBY = theForm.OrderBy.value
	NumeroPagina = theForm.NumeroPagina.value
	RisultatiPagina = theForm.RisultatiPagina.value
	
	makeRequest("include/BIO/ajax/elenco_beni_dismessi.asp?idClasse="+idClasse+"&idFornitore="+idFornitore+"&idModello="+idModello+"&EnteDonatore="+EnteDonatore+"&OrderBY="+OrderBY+"&NumeroPagina="+NumeroPagina+"&RisultatiPagina="+RisultatiPagina, "DIVRisultati", true, "elenco_beni_dismessi");		
	
}

//SCORRIMENTO PAGINE 
function PaginaPrecedente(form_name) {
	document.getElementById('NumeroPagina').value = document.getElementById('NumeroPagina').value * 1 - 1;		
	FiltraBeniDismessi(form_name,1)
}

function PaginaSuccessiva(form_name) {
	document.getElementById('NumeroPagina').value = document.getElementById('NumeroPagina').value * 1 + 1;		
	FiltraBeniDismessi(form_name,1)
}

//APRE SCHEDA DETTAGLIATA DEL BENE BIO
function SchedaBeneDismesso(idBeneDismesso, Origine) {
	//parametro Origine serve per gestire la pagina di provenienza e quindi il comportamento del pulsante "indietro"
	makeRequest('include/BIO/ajax/scheda_bene.asp?idBeneDismesso='+idBeneDismesso+'&Origine='+Origine, 'DIVRisultati', true, 'scheda_bene');				
}

//AGGIUNTA BENE AL CARRELLO BIO
function AddCartBIO(idBeneDismesso, Quantita) {
	
	/*
	if (Quantita==0) {
		alert("Selezionare la quantita' del bene da inserire nel carrello")
		return false
	}
	*/
	
	makeRequest('include/BIO/ajax/carrello.asp?azione=aggiungi&idBeneDismesso='+idBeneDismesso+'&Quantita='+Quantita, 'Contenuto', true, 'aggiorna_carello');				
}

//RICERCA MODELLO CIVAB 
function RicercaModelloBIO() {

	var idClasse = '';
	var idFornitore = '';
	
	if (document.getElementById('idClasse')) {
		idClasse = document.getElementById('idClasse').value;
	}
	
	if (document.getElementById('idFornitore')) {
		idFornitore = document.getElementById('idFornitore').value;
	}
	
	if (idClasse!='' || idFornitore!='') {
		makeRequest('include/BIO/ajax/ricerca_modello.asp?idClasse='+idClasse+'&idFornitore='+idFornitore,'DIVModello',true,'ricerca_modello');
	}
	
}

//CAMPAGNA IT
function CampagnaIT() {

	var CodiceCampagna = document.getElementById("CodiceCampagna").value;
	
	makeRequest('include/IT/elenco_prodotti.asp?CodiceCampagna='+CodiceCampagna,'Contenuto',true,'elenco_prodotti');
	
}

