


///////////////////popup quadrato centrato con menu per stampare
function popUp(legame){
 vetro = window.open(legame,'pop','toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=500,height=450');
 vetro.moveTo(((screen.width-500)/2),((screen.height-450)/2))
 vetro.focus();
}


//////// lancia il popup che fa vedere foto
function vedofoto(img){
 var adr = "vedofoto.htm?img="+img+"&";
 popUp(adr);
}




function gotopag(idpag){

	switch(idpag){
		case "home":
			self.location = "index.html";
			break;
		
		case "aboutUs":
			self.location = "about-us.html";
			break;	
			
		case "prodotti":
			self.location = "prodotti.html";
			break;
			
		case "shop":
			self.location = "shop.html";
			break;	
	
		case "recipes":
			self.location = "recipes.html";
			break;	
			
		case "news":
			self.location = "news.html";
			break;	
			
		case "FAQ":
			self.location = "FAQ.html";
			break;	
	
			
		case "contacts":
			self.location = "contacts.html";
			break;
	}



}


