function apri(args){
	
	switch (args) {
		
		//marche
		
		case  "latteparmalat":			
			document.location.href = "/prodotti/parmalat/index.htm";
		break;	
		
		case  "blupremium":			
			document.location.href = "/prodotti/blupremium/index.htm";
		break;	
		
		case  "omega":				
			document.location.href = "/prodotti/omega3/index.htm";
		break;
		
		case  "fibresse":			
			document.location.href = "/prodotti/fibresse/index.htm";
		break;	
		
		case  "physical":				
			document.location.href = "/prodotti/physical/index.htm";
		break;
		
		case  "primacrescita":				
			document.location.href = "/prodotti/crescita/index.htm";
		break;
		
		case  "zymil":				
			document.location.href = "/prodotti/zymil/index.htm";
		break;
		case  "jeunesse":				
			document.location.href = "/prodotti/jeunesse/index.htm";
		break;
		
		case  "chef":				
			document.location.href = "/prodotti/chef/index.htm";
		break;
		
		case  "santal":				
			document.location.href = "/prodotti/santal/index.htm";
		break;
		
		case  "kyr":			
			document.location.href = "/prodotti/kyr/index.htm";
		break;	
		
		case  "malu":			
			document.location.href = "/prodotti/malu/index.htm";
		break;	
				
		
		//centrali del latte	
		
		case  "ala":		
			document.location.href = "/utenti/punti/raccolta_ala.htm";
		break;
	
		case  "centraleancona":		
			document.location.href = "/utenti/punti/raccolta_ancona.htm";
		break;
	
		case  "berna":		
			document.location.href = "/utenti/punti/raccolta_berna.htm";
		break;
	
		case  "brianza":		
			document.location.href = "/utenti/punti/raccolta_brianza_pascolat.htm";
		break;
	
		case  "fiore":		
			document.location.href = "/utenti/punti/raccolta_fiore.htm";
		break;
	
		case  "lactis":		
			document.location.href = "/utenti/punti/raccolta_lactis.htm";
		break;
	
		case  "centralemonza":		
			document.location.href = "/utenti/punti/raccolta_monza.htm";
		break;
	
		case  "oro":		
			document.location.href = "/utenti/punti/raccolta_oro.htm";
		break;
	
		case  "pascolat":		
			document.location.href = "/utenti/punti/raccolta_brianza_pascolat.htm";
		break;
	
		case  "solac":		
			document.location.href = "/utenti/punti/raccolta_solac.htm";
		break;
	
		case  "torvis":		
			document.location.href = "/utenti/punti/raccolta_torvis.htm";
		break;
		
		case  "parmalat":		
			document.location.href = "/utenti/punti/raccolta_parmalat.htm";
		break;
		
		
		//prodotti
		
		case  "lungaconservazione":		
			document.location.href = "/prodotti/lungaconservazione.htm";
		break;
		
		case  "speciali":		
			document.location.href = "/prodotti/speciali.htm";
		break;
		
		case  "lattefresco":		
			document.location.href = "/prodotti/lattefresco.htm";
		break;
		
		case  "yogurt":		
			document.location.href = "/prodotti/yogurt.htm";
		break;
		
		case  "panna":		
			document.location.href = "/prodotti/panna.htm";
		break;
		
		case  "besciamella":		
			document.location.href = "/prodotti/besciamella.htm";
		break;
		
		
		case  "dessert":		
			document.location.href = "/prodotti/dessert.htm";
		break;
		
		case  "bevandefrutta":		
			document.location.href = "/prodotti/bevandefrutta.htm";
		break;
		
		case  "tepronto":		
			document.location.href = "/prodotti/tepronto.htm";
		break;
		
		case  "mousse":		
			document.location.href = "/prodotti/mousse.htm";
		break;
		
	}
	
}



function linkProd() {
	if (document.frmProdotti.selProdotti.options[document.frmProdotti.selProdotti.selectedIndex].value != "none") {
		apri(document.frmProdotti.selProdotti.options[document.frmProdotti.selProdotti.selectedIndex].value);
	}
}

function linkRegali() {
	ComboRegali = document.frmRegali.selRegali.options[document.frmRegali.selRegali.selectedIndex].value	
	if (ComboRegali != "none" && ComboRegali != 0) {
		document.location.href = document.frmRegali.selRegali.options[document.frmRegali.selRegali.selectedIndex].value;
	}
}

function linkWorld() {
	if (document.frmFooter.selFooter.options[document.frmFooter.selFooter.selectedIndex].value != "none") {
		window.open(document.frmFooter.selFooter.options[document.frmFooter.selFooter.selectedIndex].value,'','');
	}
}